import { defineConfig } from '@playwright/test' export default defineConfig({ testDir: './e2e', timeout: 60000, expect: { timeout: 10000 }, fullyParallel: false, retries: 0, use: { baseURL: 'http://localhost:5173', headless: true, screenshot: 'only-on-failure', trace: 'retain-on-failure', actionTimeout: 10000, }, projects: [ { name: 'chromium', use: { browserName: 'chromium' } }, ], webServer: { command: 'npm run dev', port: 5173, reuseExistingServer: true, timeout: 30000, }, })