Skip to content

Commit

Permalink
Fix Cypress not retrying on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
axelboc committed Jul 27, 2023
1 parent 5de36e5 commit f609c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default defineConfig({
addMatchImageSnapshotPlugin(on);
},
},
retries: process.env.TAKE_SNAPSHOTS ? 3 : null,
retries: process.env.CYPRESS_TAKE_SNAPSHOTS ? 3 : null,
screenshotsFolder: 'cypress/debug',
fixturesFolder: false,
video: false,
Expand Down

0 comments on commit f609c92

Please sign in to comment.