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
8 changes: 8 additions & 0 deletions eform-client/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: 'playwright/e2e',
workers: 1,
// Explicit fail-fast — do NOT raise this. Shard b's specs form a chain of
// cumulative state mutations on a shared worker / week range with no
// per-spec DB reset; retrying through a partial failure stacks writes and
// produces confusing cascade failures downstream (e.g. expected 88.36, got
// 156.38 from a doubled WorkingHours pass). The actual fix for the
Comment on lines +6 to +10
// underlying flake source belongs in test isolation (worker isolation OR
Comment on lines +6 to +11
// a test-only reset endpoint), not in masking via retries.
retries: 0,
use: {
baseURL: 'http://localhost:4200',
viewport: { width: 1920, height: 1080 },
Expand Down
Loading