import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests/e2e', fullyParallel: false, forbidOnly: !!process.env.CI, retries: 0, reporter: 'html', timeout: 30_000, expect: { timeout: 8_000 }, use: { baseURL: 'http://localhost:5173', trace: 'on-first-retry' }, projects: [ { name: 'chromium', use: { ...devices['Pixel 5'], viewport: { width: 390, height: 844 } } } ] });