import { defineConfig } from "@playwright/test"; import base from "./playwright.config"; /** * Config for running reports e2e against an already-running dev server on port 3001. * Usage: npx playwright test e2e/reports-exports.spec.ts --config=playwright.reports-check.config.ts */ export default defineConfig({ ...base, use: { ...base.use, baseURL: "http://localhost:3001" }, webServer: { url: "http://localhost:3001", reuseExistingServer: true, command: "true", timeout: 5_000, }, });