a58f42cf86
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
17 lines
424 B
TypeScript
17 lines
424 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests",
|
|
timeout: 60_000,
|
|
retries: 0,
|
|
// One shared backend + log file; parallel sign-ins would interleave codes.
|
|
workers: 1,
|
|
use: { baseURL: "http://localhost:8765" },
|
|
webServer: {
|
|
command: "bash ./serve.sh",
|
|
url: "http://localhost:8765/healthz",
|
|
reuseExistingServer: false,
|
|
timeout: 120_000,
|
|
},
|
|
});
|