Skip to content

Commit

Permalink
Merge pull request #5153 from LedgerHQ/support/increase-playwright-ti…
Browse files Browse the repository at this point in the history
…meout

chore: increase default expect timeout of playwright
  • Loading branch information
gre authored Oct 20, 2023
2 parents c64fd38 + 7d92347 commit 48d21c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/ledger-live-desktop/tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ const config: PlaywrightTestConfig = {
outputDir: "./artifacts/test-results",
timeout: process.env.CI ? 190000 : 600000,
expect: {
timeout: 30000,
// we need to give enough time for the playwright app to start. when the CI is slow, 30s was apprently not enough.
timeout: 61000,
toHaveScreenshot: {
/**
* do not increase unless it makes most tests flaky
Expand Down

0 comments on commit 48d21c4

Please sign in to comment.