From b7f11cd1253cb2c38f147978f168a89a4ac0394d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Tue, 23 Feb 2021 21:53:57 +0100 Subject: [PATCH] cicd: disable screenshot on failure --- cypress.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cypress.json b/cypress.json index eaf2081..84e9818 100644 --- a/cypress.json +++ b/cypress.json @@ -1,8 +1,9 @@ { "baseUrl": "http://127.0.0.1:3000", - "defaultCommandTimeout": 1000, + "defaultCommandTimeout": 2000, "chromeWebSecurity": false, "viewportWidth": 1920, "viewportHeight": 1080, - "video": false + "video": false, + "screenshotOnRunFailure": false }