From 1acdecdebf9fa62e41a019621ffd16bdb3e7a824 Mon Sep 17 00:00:00 2001 From: iamtoruk Date: Mon, 17 Aug 2026 01:48:04 -0700 Subject: [PATCH] test(codex): give the every-boundary differential an explicit timeout 110 resume splits take ~1.3s locally but exceeded vitest's 5s default on the CI runner once the parallel suite also hosts the parse-worker tests. --- tests/providers/codex-resume.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/providers/codex-resume.test.ts b/tests/providers/codex-resume.test.ts index 67c69c0f..e63e41f8 100644 --- a/tests/providers/codex-resume.test.ts +++ b/tests/providers/codex-resume.test.ts @@ -279,9 +279,9 @@ describe('codex resume differential', () => { it('matches a full re-parse at every line boundary of a rich session', async () => { await assertEverySplitMatches(RICH_LINES) - }) + }, 60_000) it('matches a full re-parse at every line boundary of a forked session', async () => { await assertEverySplitMatches(FORK_LINES) - }) + }, 60_000) })