mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-16 19:29:26 +02:00
22 lines
529 B
TypeScript
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
|
|
});
|