import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './e2e', timeout: 30 * 1000, expect: { timeout: 5000 }, fullyParallel: true, reporter: 'list', use: { actionTimeout: 0, trace: 'on-first-retry', }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], webServer: { command: 'npm run dev', url: 'http://localhost:5173', reuseExistingServer: true, timeout: 10 * 1000 } });