Files
multica/playwright.config.ts
DimaS 2f24057bc2 feat(issues): add date filter (#4129)
Co-authored-by: “646826” <“646826@gmail.com”>
2026-06-16 08:38:53 +08:00

22 lines
529 B
TypeScript

import "./e2e/env";
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
timeout: 60000,
workers: 1,
retries: 0,
use: {
baseURL: process.env.PLAYWRIGHT_BASE_URL ?? process.env.FRONTEND_ORIGIN ?? "http://localhost:3000",
headless: true,
},
projects: [
{
name: "chromium",
use: { browserName: "chromium" },
},
],
// Don't auto-start servers — they must be running already
// This avoids complexity and port conflicts during testing
});