Skip to content

Commit e463674

Browse files
committed
fix timeout
1 parent 05837d1 commit e463674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/processSnapshot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ export default async function processSnapshot(snapshot: Snapshot, ctx: Context):
645645
if (ctx.config.cliEnableJavaScript && fullPage) await page.evaluate(scrollToBottomAndBackToTop, { frequency: 100, timing: ctx.config.scrollTime });
646646

647647
try {
648-
await page.waitForLoadState('networkidle', { timeout: 5000 });
648+
await page.waitForLoadState('networkidle', { timeout: 15000 });
649649
ctx.log.debug('Network idle 500ms');
650650
} catch (error) {
651651
ctx.log.debug(`Network idle failed due to ${error}`);

0 commit comments

Comments
 (0)