import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests/e2e', // Timeout settings timeout: 30000, expect: { timeout: 5000 }, // Test execution fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, // Reporter reporter: [ ['html'], ['list'], ['json', { outputFile: 'test-results/results.json' }] ], // Shared settings use: { baseURL: 'http://localhost:8080', trace: 'on-first-retry', screenshot: 'only-on-failure', video: 'retain-on-failure' }, // Browser configurations projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, { name: 'firefox', use: { ...devices['Desktop Firefox'] }, }, { name: 'webkit', use: { ...devices['Desktop Safari'] }, }, { name: 'mobile-chrome', use: { ...devices['Pixel 5'] }, }, { name: 'mobile-safari', use: { ...devices['iPhone 12'] }, }, ], // Web server webServer: { command: 'python -m http.server 8080', url: 'http://localhost:8080', reuseExistingServer: !process.env.CI, }, });