Skip to content

Commit

Permalink
Reduce playwright's expect timeout
Browse files Browse the repository at this point in the history
Addresses RISDEV-0000
  • Loading branch information
zechmeister committed Sep 22, 2023
1 parent 421ad07 commit 88c812d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const config: PlaywrightTestConfig = {
workers: process.env.CI ? 4 : undefined,
fullyParallel: true,
timeout: 120000,
expect: { timeout: 30000 },
expect: { timeout: 10000 },
use: {
viewport: { width: 1280, height: 720 },
acceptDownloads: true,
Expand Down

0 comments on commit 88c812d

Please sign in to comment.