Skip to content

Commit

Permalink
Playwright test fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
edwh committed Apr 8, 2024
1 parent a067d36 commit 9f52f2a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ const config = {
outputDir: '/tmp/test-results',

// Flakiness
timeout: 10 * 60 * 1000,
// Timeout per test - needs to be less than 10 minutes to avoid Circle CI timeout kicking in.
timeout: 5 * 60 * 1000,
navigationTimeout: 2 * 60 * 1000,
actionTimeout: 2 * 60 * 1000
actionTimeout: 2 * 60 * 1000,
retries: 2
};

module.exports = config;

0 comments on commit 9f52f2a

Please sign in to comment.