import { defineConfig } from "@playwright/test"; export default defineConfig({ testDir: "./tests", timeout: 60_000, fullyParallel: false, retries: 0, use: { baseURL: process.env.PLAYWRIGHT_BASE_URL || "http://localhost:1234", headless: true, }, });