Skip to content

Commit 733d803

Browse files
Reflexclaude
andcommitted
fix(smoketests): raise devbox snapshot test timeouts to 120s
The two tests in the `devbox snapshots` suite hard-coded a 30s per-test timeout, overriding the 300s smoketest default in jest.config.ts. Under concurrent CI load, devbox create+snapshot tail latency exceeds 30s (measured up to ~22s at 30-way parallelism), causing flaky timeouts. Raise both to 120s for headroom while still failing fast on a genuine hang. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 6ceb236 commit 733d803

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/smoketests/snapshots.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('smoketest: devbox snapshots', () => {
2929
await client.devboxes.shutdown(devbox.id);
3030
}
3131
}
32-
}, 30_000);
32+
}, 120_000);
3333

3434
test('launch devbox from snapshot (deprecated polling path)', async () => {
3535
const warnSpy = jest.spyOn(console, 'warn').mockImplementation((...args: unknown[]) => {
@@ -54,5 +54,5 @@ describe('smoketest: devbox snapshots', () => {
5454
await client.devboxes.shutdown(devbox.id);
5555
}
5656
}
57-
}, 30_000);
57+
}, 120_000);
5858
});

0 commit comments

Comments
 (0)