Skip to content

Commit

Permalink
👷 ci(metamask): Reduce the feedback loop to minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
duckception committed Nov 30, 2023
1 parent bfdecd9 commit 302209e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wallets/metamask/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ export default defineConfig({
// Fail the build on CI if you accidentally left test.only in the source code.
forbidOnly: !!process.env.CI,

// Fail all remaining tests on CI after the first failure. We want to reduce the feedback loop on CI to minimum.
maxFailures: process.env.CI ? 1 : 0,

// Opt out of parallel tests on CI since it supports only 1 worker.
workers: process.env.CI ? 1 : undefined,

Expand Down

0 comments on commit 302209e

Please sign in to comment.