Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/playwright/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: ".",
testMatch: "*.spec.ts",
timeout: 30_000,
// 60s per-test timeout: /graph with the dogfood dataset (742 nodes, 1477
// edges) takes ~25-30s for synchronous layout + SVG generation in
// render_graph_view, leaving <5s for the .toBeVisible() assertion under
// the previous 30s budget. CI runner load makes this tighter still.
timeout: 60_000,
retries: process.env.CI ? 1 : 0,
workers: 1, // serial — single server instance
use: {
Expand Down
Loading