import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './scenarios', fullyParallel: true, forbidOnly: !!process.env.CI, retries: 0, workers: 1, reporter: 'list', use: { baseURL: process.env.WEB_URL || 'http://localhost:3000', trace: 'retain-on-failure', screenshot: 'only-on-failure', }, timeout: 180000, expect: { timeout: 10000, }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], });