Skip to content

Commit b1ca2eb

Browse files
authored
fix(nextjs): Increase timeout for client integration tests (#4075)
1 parent 84a6dc0 commit b1ca2eb

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

+1-1
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(2000);
30+
page.setDefaultTimeout(4000);
3131
page.on('request', createRequestInterceptor(env));
3232

3333
return scenario(env);

0 commit comments

Comments
 (0)