Skip to content

Commit

Permalink
Try increasing navigation timeout for e2e tests to 60000 ms
Browse files Browse the repository at this point in the history
  • Loading branch information
thelovekesh committed Sep 14, 2023
1 parent 6d8a722 commit e8f73c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/config/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ beforeAll(async () => {
await cleanUpSettings();

// Keep navigation timeout high since CI resources can be slow.
await page.setDefaultNavigationTimeout(30000);
await page.setDefaultTimeout(30000);
await page.setDefaultNavigationTimeout(60000);
await page.setDefaultTimeout(60000);
});

// eslint-disable-next-line jest/require-top-level-describe
Expand Down

0 comments on commit e8f73c5

Please sign in to comment.