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.
This commit is contained in:
iamtoruk 2026-08-17 01:48:04 -07:00
parent 569030e9dd
commit 1acdecdebf

View file

@ -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)
})