From 1c5ae04c4a8e99b7b2722a776fda5bc63959fb65 Mon Sep 17 00:00:00 2001 From: Anvit Srivastav Date: Thu, 8 Aug 2024 11:59:12 -0700 Subject: [PATCH] Add retries to cypress for flaky tests --- cypress.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress.config.js b/cypress.config.js index bb0aaa50ba..b810d2c4d1 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -11,6 +11,7 @@ module.exports = defineConfig({ setupNodeEvents(on, config) { return require('./cypress/plugins/index.js')(on, config) }, + retries: {'runMode': 3}, baseUrl: 'http://localhost:63001', }, })