Skip to content

Commit f565113

Browse files
authored
fix(test): correct integration test timeouts that caused cascading failures (#120)
1 parent 967f7c3 commit f565113

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/session/cf/cf-sites.integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ describe.concurrent('CF Solver Multi-Site', () => {
264264
browserWSEndpoint: wsUrl,
265265
defaultViewport: null,
266266
});
267-
});
267+
}, 30_000);
268268

269269
afterAll(async () => {
270270
await browser?.close().catch(() => {});

src/session/cf/replay-health.integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {
2727
describe('Replay Recording Health', () => {
2828
const wsUrl = buildWsUrl();
2929

30-
it('per-tab replays store events and CF markers', { timeout: 20_000 }, async () => {
30+
it('per-tab replays store events and CF markers', async () => {
3131
const testStartTs = Date.now();
3232

3333
const browser = await puppeteer.connect({

0 commit comments

Comments
 (0)