2026-02-19 12:54:04 +00:00
|
|
|
import { defineConfig } from "@playwright/test";
|
|
|
|
|
import { dirname, resolve } from "node:path";
|
|
|
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
|
|
|
|
|
|
const configDir = dirname(fileURLToPath(new URL(import.meta.url)));
|
|
|
|
|
const frontendRoot = resolve(configDir, ".");
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
testDir: "./tests/e2e",
|
|
|
|
|
fullyParallel: true,
|
|
|
|
|
timeout: 30_000,
|
|
|
|
|
expect: {
|
|
|
|
|
timeout: 5_000,
|
|
|
|
|
},
|
|
|
|
|
use: {
|
|
|
|
|
baseURL: "http://127.0.0.1:41700",
|
|
|
|
|
trace: "on-first-retry",
|
|
|
|
|
},
|
|
|
|
|
webServer: {
|
|
|
|
|
command:
|
|
|
|
|
"pnpm exec vite --config vite.config.ts --host 127.0.0.1 --port 41700 --strictPort",
|
|
|
|
|
url: "http://127.0.0.1:41700/@vite/client",
|
2026-02-23 20:39:57 +00:00
|
|
|
reuseExistingServer: true,
|
2026-02-19 12:54:04 +00:00
|
|
|
timeout: 120_000,
|
|
|
|
|
cwd: frontendRoot,
|
|
|
|
|
},
|
|
|
|
|
});
|