21 lines
389 B
TypeScript
21 lines
389 B
TypeScript
|
|
import { defineConfig } from '@playwright/test'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: './e2e',
|
||
|
|
timeout: 60_000,
|
||
|
|
retries: 0,
|
||
|
|
use: {
|
||
|
|
baseURL: 'http://localhost:3100',
|
||
|
|
headless: true,
|
||
|
|
screenshot: 'on',
|
||
|
|
trace: 'on-first-retry',
|
||
|
|
},
|
||
|
|
projects: [
|
||
|
|
{
|
||
|
|
name: 'chromium',
|
||
|
|
use: { browserName: 'chromium' },
|
||
|
|
},
|
||
|
|
],
|
||
|
|
outputDir: './e2e/test-results',
|
||
|
|
})
|