Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raspberri05 committed Oct 19, 2024
1 parent 13fb9b2 commit eb7afbc
Show file tree
Hide file tree
Showing 6 changed files with 226 additions and 42 deletions.
27 changes: 27 additions & 0 deletions application/.github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
5 changes: 5 additions & 0 deletions application/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,8 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
node_modules/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
64 changes: 64 additions & 0 deletions application/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

85 changes: 43 additions & 42 deletions application/package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,45 @@
{
"name": "persona.fm",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"style": "prettier --write ."
},
"dependencies": {
"@next/third-parties": "^14.2.15",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.4",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"framer-motion": "^11.11.8",
"next": "^14.2.15",
"openai": "^4.67.3",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"daisyui": "^4.12.10",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "^14.2.15",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5"
},
"volta": {
"node": "20.18.0"
}
"name": "persona.fm",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"style": "prettier --write ."
},
"dependencies": {
"@next/third-parties": "^14.2.15",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.4",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"framer-motion": "^11.11.8",
"next": "^14.2.15",
"openai": "^4.67.3",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"daisyui": "^4.12.10",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "^14.2.15",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5"
},
"volta": {
"node": "20.18.0"
}
}
79 changes: 79 additions & 0 deletions application/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
import { defineConfig, devices } from '@playwright/test';

/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// import dotenv from 'dotenv';
// import path from 'path';
// dotenv.config({ path: path.resolve(__dirname, '.env') });

/**
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: './tests',
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://127.0.0.1:3000',

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},

/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},

{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},

{
name: 'webkit',
use: { ...devices['Desktop Safari'] },
},

/* Test against mobile viewports. */
{
name: 'Mobile Chrome',
use: { ...devices['Pixel 5'] },
},
{
name: 'Mobile Safari',
use: { ...devices['iPhone 12'] },
},

/* Test against branded browsers. */
{
name: 'Microsoft Edge',
use: { ...devices['Desktop Edge'], channel: 'msedge' },
},
{
name: 'Google Chrome',
use: { ...devices['Desktop Chrome'], channel: 'chrome' },
},
],

/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run start',
url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI,
},
});
8 changes: 8 additions & 0 deletions application/tests/index.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { test, expect } from '@playwright/test';

test('has title', async ({ page }) => {
await page.goto('/');

// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/Persona FM/);
});

0 comments on commit eb7afbc

Please sign in to comment.