Skip to content

Commit

Permalink
tests/work.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewjordan committed Sep 17, 2024
1 parent de9f3ac commit 8b9ef41
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ export default defineConfig({
fullyParallel: false,

/* Increase locator timeout past default 5s */
// expect: {
// timeout: 30000,
// },
expect: {
timeout: 10 * 1500,
},
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
reporter: "html",
// timeout: 30000,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Increase the default timeout to 10 seconds. */
timeout: 15000,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : 6,

Expand Down

0 comments on commit 8b9ef41

Please sign in to comment.