2026-02-14 18:25:11 +01:00
|
|
|
import { defineConfig } from '@playwright/test'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
testDir: './e2e',
|
|
|
|
|
timeout: 30000,
|
2026-02-14 21:29:04 +01:00
|
|
|
workers: 1,
|
2026-02-14 18:25:11 +01:00
|
|
|
use: {
|
|
|
|
|
baseURL: 'http://localhost:5173',
|
|
|
|
|
},
|
|
|
|
|
webServer: {
|
|
|
|
|
command: 'pnpm dev',
|
|
|
|
|
port: 5173,
|
|
|
|
|
reuseExistingServer: true,
|
|
|
|
|
},
|
|
|
|
|
})
|