Skip to content

Commit

Permalink
chore(e2e): reduce timeouts (#1509)
Browse files Browse the repository at this point in the history
  • Loading branch information
chohner authored Dec 3, 2024
1 parent 0def3d3 commit 77d7280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ const baseURL = useDefaultBaseUrl
export default defineConfig({
testDir: "./tests/e2e",
/* Maximum time one test can run for. */
timeout: 5 * 60 * 1000,
timeout: 2 * 60 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 5 * 1000,
timeout: 2 * 1000,
},
/* Run tests in files in parallel */
fullyParallel: true,
Expand Down

0 comments on commit 77d7280

Please sign in to comment.