import { defineConfig } from "@playwright/test"; export default defineConfig({ testDir: "./e2e", timeout: 30_000, expect: { timeout: 10_000 }, fullyParallel: false, workers: 1, retries: 0, use: { baseURL: process.env.PLAYWRIGHT_BASE_URL || "http://localhost:3000", headless: true, screenshot: "only-on-failure", }, projects: [ { name: "chromium", use: { browserName: "chromium" } }, ], });