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
Copy file name to clipboardExpand all lines: claude/CLAUDE-KNOWLEDGE.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,3 +14,6 @@ A: The first calls to `/api/latest/internal/external-db-sync/sequencer` and `/po
14
14
15
15
Q: How can we serialize only the external DB sync Vitest files while keeping the rest parallel?
16
16
A: Use `poolMatchGlobs` to route the external DB sync test globs to the `forks` pool and set `poolOptions.forks.{minForks,maxForks}=1` in `apps/e2e/vitest.config.ts`; keep the default threads pool for all other tests.
17
+
18
+
Q: How can CI keep most tests parallel while isolating external DB sync tests?
19
+
A: Split workflow test runs into two steps: run the full suite with `--exclude "**/external-db-sync*.test.ts"`, then run only external DB sync tests with `--min-workers=1 --max-workers=1`.
0 commit comments