From e9ef5754a54dd00e670dc3dc9aab93fccd3fa748 Mon Sep 17 00:00:00 2001 From: Justine Hell Date: Mon, 6 Nov 2023 11:31:30 +0100 Subject: [PATCH] Reactive Cypress retry option --- cypress.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress.config.js b/cypress.config.js index c921e286f..da5637305 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -30,4 +30,6 @@ module.exports = defineConfig({ reporter: require.resolve('@badeball/cypress-cucumber-preprocessor/pretty-reporter'), }, defaultCommandTimeout: 10000, + // TODO : Remove 'retries' when random failures are fixed (see https://github.com/ditrit/leto-modelizer/issues/433) + retries: 3, });