import { defineConfig, devices } from "@playwright/test"; const BASE_URL = process.env.E2E_BASE_URL || "http://localhost:3000"; export default defineConfig({ testDir: "./e2e", timeout: 30_000, expect: { timeout: 10_000 }, fullyParallel: false, retries: 0, reporter: [["list"]], use: { baseURL: BASE_URL, headless: true, trace: "on-first-retry", }, projects: [ { name: "chromium", use: { ...devices["Desktop Chrome"] }, }, ], });