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