import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests', fullyParallel: false, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: 1, reporter: [['html', { open: 'never' }], ['list']], use: { baseURL: 'http://localhost:5173', trace: 'on-first-retry', screenshot: 'only-on-failure', video: 'retain-on-failure', // Slow down actions so a human can watch the realistic flow slowMo: process.env.HEADED ? 450 : 0, }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], });