import { defineConfig, devices } from '@playwright/test' // Use a dedicated port for E2E tests to avoid conflicts with other dev servers const E2E_PORT = 5174 export default defineConfig({ testDir: './e2e', fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: 'html', use: { baseURL: `http://localhost:${E2E_PORT}`, trace: 'on-first-retry', }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], webServer: { command: `npm run dev -- --port ${E2E_PORT}`, url: `http://localhost:${E2E_PORT}`, reuseExistingServer: !process.env.CI, }, })