- Fixed run-e2e.sh to use numeric 0 instead of 'unknown' for test counts - This resolves JSON parsing error when tests don't run - Disabled webServer in playwright.config.ts due to Vite -p flag issue - Tests now require manually starting dev server: cd web && pnpm dev -- --port 3050 - Updated comments in config with instructions for running tests
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
fullyParallel: true,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: 'html',
|
|
use: {
|
|
baseURL: 'http://localhost:3050',
|
|
trace: 'on-first-retry',
|
|
screenshot: 'only-on-failure',
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
{
|
|
name: 'firefox',
|
|
use: { ...devices['Desktop Firefox'] },
|
|
},
|
|
{
|
|
name: 'webkit',
|
|
use: { ...devices['Desktop Safari'] },
|
|
},
|
|
{
|
|
name: 'Mobile Chrome',
|
|
use: { ...devices['Pixel 5'] },
|
|
},
|
|
{
|
|
name: 'Mobile Safari',
|
|
use: { ...devices['iPhone 12'] },
|
|
},
|
|
{
|
|
name: 'Desktop Chrome HiDPI',
|
|
use: { ...devices['Desktop Chrome HiDPI'] },
|
|
},
|
|
],
|
|
// webServer is disabled - tests should run against already-running server
|
|
// To run tests: cd web && pnpm dev -- --port 3050 (in separate terminal)
|
|
// Then: ./scripts/tests/run-e2e.sh
|
|
});
|