Skip to content

Commit

Permalink
fix(nextjs): Increase timeout for client integration tests (#4075)
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie authored Oct 19, 2021
1 parent 84a6dc0 commit b1ca2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/test/integration/test/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const execute = async (scenario, env) => {

const page = (env.page = await env.browser.newPage());
await page.setRequestInterception(true);
page.setDefaultTimeout(2000);
page.setDefaultTimeout(4000);
page.on('request', createRequestInterceptor(env));

return scenario(env);
Expand Down

0 comments on commit b1ca2eb

Please sign in to comment.