From a53f5db04753697b915e0f654d126798c9d7729f Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 6 Mar 2025 08:23:04 +0100 Subject: [PATCH] fix(cypressParallel.sh): refs #6695 improve test execution output for clarity --- test/cypress/cypressParallel.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/test/cypress/cypressParallel.sh b/test/cypress/cypressParallel.sh index e0aaf0b946..87900d2258 100644 --- a/test/cypress/cypressParallel.sh +++ b/test/cypress/cypressParallel.sh @@ -4,14 +4,12 @@ find 'test/cypress/integration' \ -mindepth 1 \ -maxdepth 1 \ -type d | \ -xargs -P "$1" -I {} \ -sh -c ''' - echo "🔷 {}" && +xargs -P "$1" -I {} sh -c ' + echo "🔷 Ejecutando tests en: {}" && xvfb-run -a cypress run \ --headless \ - --browser chromium \ - --spec "{}" \ - --quiet \ + --spec "{}" \ + --quiet \ > /dev/null 2>&1 -''' +' wait