From e5b524e8a0837b16ff221ca2c7dac431f8b0f1e8 Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 6 Mar 2025 08:23:36 +0100 Subject: [PATCH] fix(cypressParallel.sh): refs #6695 simplify test execution output format --- test/cypress/cypressParallel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cypress/cypressParallel.sh b/test/cypress/cypressParallel.sh index 87900d2258..0cada54377 100644 --- a/test/cypress/cypressParallel.sh +++ b/test/cypress/cypressParallel.sh @@ -5,7 +5,7 @@ find 'test/cypress/integration' \ -maxdepth 1 \ -type d | \ xargs -P "$1" -I {} sh -c ' - echo "🔷 Ejecutando tests en: {}" && + echo "🔷 {}" && xvfb-run -a cypress run \ --headless \ --spec "{}" \