import { defineConfig } from "@playwright/test"; export default defineConfig({ testDir: "./tests", testMatch: /.*\.spec\.mjs$/, fullyParallel: false, retries: 0, workers: 1, reporter: [["list"]], use: { baseURL: process.env.TEST_WEB_BASE ?? "http://localhost:80", trace: "off", screenshot: "off", video: "off", headless: true, }, });