From b7c1359090283481c2a42f445f37c36339e1422d Mon Sep 17 00:00:00 2001 From: OlegIvaniv Date: Fri, 9 Dec 2022 10:10:55 +0100 Subject: [PATCH] test(editor): Set e2e test retries (#4870) --- cypress.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cypress.config.js b/cypress.config.js index 7b0e2fbf103cf..ac72bfd6999dd 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -4,6 +4,10 @@ const { defineConfig } = require('cypress'); const BASE_URL = 'http://localhost:5678'; module.exports = defineConfig({ + retries: { + openMode: 1, + runMode: 3 + }, e2e: { baseUrl: BASE_URL, video: false,