/** * Playwright Test Configuration * @see https://playwright.dev/docs/test-configuration */ import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests/e2e', // Maximum time one test can run timeout: 30 * 1000, // Test execution settings fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, // Reporter configuration reporter: process.env.CI ? 'github' : 'list', // Shared settings for all projects use: { baseURL: 'http://localhost:8080', trace: 'on-first-retry', screenshot: 'only-on-failure', }, // Projects for different browsers projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], // Web server configuration webServer: { command: 'npx http-server -p 8080 -c-1', port: 8080, timeout: 120 * 1000, reuseExistingServer: !process.env.CI, }, });