From 9350c512ff80e6161e43101a929bf09f563afff4 Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Fri, 21 Feb 2025 11:47:16 +0100 Subject: [PATCH] ci: refs #6695 JUnit console report disabled --- cypress.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress.config.js b/cypress.config.js index 33cab4924eb..8e5f16517f4 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -14,7 +14,7 @@ if (process.env.CI) { reporter = 'junit'; reporterOptions = { mochaFile: 'e2e-junitresults.xml', - toConsole: true, + toConsole: false, }; } else { urlHost = 'localhost';