Enable Cypress retries to combat flakiness (#9413)

This commit is contained in:
Michael Telatynski 2022-10-13 19:11:30 +01:00 committed by GitHub
parent 970d1912e5
commit a45a662c57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 91 additions and 85 deletions

View file

@ -30,4 +30,8 @@ export default defineConfig({
experimentalSessionAndOrigin: true,
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
},
retries: {
runMode: 4,
openMode: 0,
},
});