You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E2E shard 3/16 (desktop) failed on both main-targeted PRs during the v2.12.0 release (promotion #1791 and hotfix #1828). The hotfix PR changed only package.json/package-lock.json (a dev-only dependency override), so these failures are definitively flakes, not regressions. Because main PRs run with fail-fast (maxFailures: 1), a single shard-3 flake cancels all other shards and costs a full ~30-minute rerun cycle per occurrence.
Failing tests (from run 28779550395, job 85332065279)
e2e/tests/diary/diary-drafts.spec.ts:854 — "Draft card click navigates to edit page (Scenario 14)" Error: apiRequestContext.delete: Test timeout of 45000ms exceeded. (fails on first attempt AND retry EPIC-01: Authentication & User Management #1, 48s each)
e2e/tests/diary/diary-r2-uat.spec.ts:599 — "Manual mode API parameter (Scenario 10)" (fails in 942ms — assertion, not timeout)
e2e/tests/documents/document-linking.spec.ts:369 — "System-wide Hide (Scenario 7) — toggle defaults ON and hides linked doc @Responsive"
History
These same diary tests were addressed in #1790, #1792, and #1793 but still recur. The dominant signature is the fixture teardown apiRequestContext.delete timing out at 45s — suggesting cleanup contention/deadlock under parallel CI load rather than a UI assertion problem.
Acceptance criteria
Root-cause the apiRequestContext.delete 45s timeout in diary-drafts fixture teardown (e.g. SQLite write contention under parallel workers, dangling request queue)
Fix or quarantine-and-fix the three tests above so 5 consecutive full E2E runs on a main-targeted PR pass without a shard-3 rerun
Consider whether fail-fast (maxFailures: 1) should tolerate one retry-passing test before cancelling all shards
[orchestrator] Filed during v2.12.0 /release post-merge verification; both occurrences today recovered via gh run rerun --failed.
Problem
E2E shard 3/16 (desktop) failed on both main-targeted PRs during the v2.12.0 release (promotion #1791 and hotfix #1828). The hotfix PR changed only
package.json/package-lock.json(a dev-only dependency override), so these failures are definitively flakes, not regressions. Because main PRs run with fail-fast (maxFailures: 1), a single shard-3 flake cancels all other shards and costs a full ~30-minute rerun cycle per occurrence.Failing tests (from run 28779550395, job 85332065279)
e2e/tests/diary/diary-drafts.spec.ts:854— "Draft card click navigates to edit page (Scenario 14)"Error: apiRequestContext.delete: Test timeout of 45000ms exceeded.(fails on first attempt AND retry EPIC-01: Authentication & User Management #1, 48s each)e2e/tests/diary/diary-r2-uat.spec.ts:599— "Manual mode API parameter (Scenario 10)" (fails in 942ms — assertion, not timeout)e2e/tests/documents/document-linking.spec.ts:369— "System-wide Hide (Scenario 7) — toggle defaults ON and hides linked doc @Responsive"History
These same diary tests were addressed in #1790, #1792, and #1793 but still recur. The dominant signature is the fixture teardown
apiRequestContext.deletetiming out at 45s — suggesting cleanup contention/deadlock under parallel CI load rather than a UI assertion problem.Acceptance criteria
apiRequestContext.delete45s timeout in diary-drafts fixture teardown (e.g. SQLite write contention under parallel workers, dangling request queue)maxFailures: 1) should tolerate one retry-passing test before cancelling all shards[orchestrator] Filed during v2.12.0
/releasepost-merge verification; both occurrences today recovered viagh run rerun --failed.