Skip to content

Commit a7e3d32

Browse files
authored
chore(nextjs): Increase client integration test timeout (#5717)
Lately our nextjs integration tests seem to be flakey, because sometimes at least one of the client-side tests times out. (See #5717 for a screenshot.) This doubles the timeout in hopes of fixing that problem.
1 parent f9244f3 commit a7e3d32

File tree

1 file changed

+1
-1
lines changed
  • packages/nextjs/test/integration/test

1 file changed

+1
-1
lines changed

packages/nextjs/test/integration/test/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const execute = async (scenario, env) => {
2727

2828
const page = (env.page = await env.browser.newPage());
2929
await page.setRequestInterception(true);
30-
page.setDefaultTimeout(4000);
30+
page.setDefaultTimeout(8000);
3131
page.on('request', createRequestInterceptor(env));
3232

3333
return scenario(env);

0 commit comments

Comments
 (0)