import { defineConfig, devices } from '@playwright/test'; /** * Playwright E2E configuration for LeoCRM. * * Tests run against the Vite dev server (or a preview build). * In CI/CD, set BASE_URL to point at the deployed frontend. */ export default defineConfig({ testDir: './e2e', fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: process.env.CI ? 'github' : 'html', timeout: 30_000, expect: { timeout: 10_000, }, use: { baseURL: process.env.BASE_URL ?? 'http://localhost:5173', trace: 'on-first-retry', screenshot: 'only-on-failure', video: 'retain-on-failure', locale: 'de-DE', timezoneId: process.env.TZ ?? 'Europe/Berlin', }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], webServer: process.env.CI ? undefined : { command: 'npm run dev', url: 'http://localhost:5173', reuseExistingServer: !process.env.CI, timeout: 60_000, }, });