import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './src/tests', fullyParallel: true, forbidOnly: !!process.env.CI, retries: 0, timeout: 30000, use: { baseURL: 'http://localhost:3000', trace: 'off', screenshot: 'off', video: 'off', headless: true, viewport: { width: 1280, height: 720 }, actionTimeout: 15000, navigationTimeout: 30000, }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], });