import { defineConfig, devices } from "@playwright/test"; export default defineConfig({ testDir: "./tests/e2e", testMatch: ["**/accessibility.spec.ts"], fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 4 : undefined, reporter: "html", webServer: { command: "npm run dev -- --port 3102 --host 127.0.0.1", url: "http://127.0.0.1:3102/", reuseExistingServer: true, timeout: 300_000, }, use: { baseURL: "http://127.0.0.1:3102", trace: "on-first-retry", screenshot: "on", }, projects: [ { name: "chromium", use: { ...devices["Desktop Chrome"] }, }, ], // Run accessibility tests // Use `npx playwright test --config=playwright.a11y.config.ts` });