Only retry Cypress tests in run mode GitOrigin-RevId: e862f8e88e9fe970a5c2b9142c05d8b648ac4b1e
@@ -18,6 +18,7 @@ export default defineConfig({
specPattern:
'./{test,modules/**/test}/frontend/components/**/*.spec.{js,ts,tsx}',
},
- // Docs: https://docs.cypress.io/guides/guides/test-retries#Global-Configuration
- retries: 3,
+ retries: {
+ runMode: 3,
+ },
})