27 lines
756 B
TypeScript
27 lines
756 B
TypeScript
|
|
import { defineConfig, devices } from '@playwright/test';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: './src/test/e2e',
|
||
|
|
fullyParallel: false,
|
||
|
|
forbidOnly: !!process.env.CI,
|
||
|
|
retries: process.env.CI ? 1 : 0,
|
||
|
|
workers: 1,
|
||
|
|
reporter: process.env.CI ? [['html'], ['github']] : [['list']],
|
||
|
|
use: {
|
||
|
|
baseURL: process.env.PLAYWRIGHT_BASE_URL ?? 'http://localhost:5173',
|
||
|
|
trace: 'retain-on-failure',
|
||
|
|
screenshot: 'only-on-failure',
|
||
|
|
},
|
||
|
|
projects: [
|
||
|
|
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
|
||
|
|
],
|
||
|
|
webServer: process.env.PLAYWRIGHT_BASE_URL
|
||
|
|
? undefined
|
||
|
|
: {
|
||
|
|
command: 'npm run dev:local',
|
||
|
|
url: 'http://localhost:5173',
|
||
|
|
reuseExistingServer: !process.env.CI,
|
||
|
|
timeout: 60_000,
|
||
|
|
},
|
||
|
|
});
|