diff --git a/test/cypress/cypressParallel.sh b/test/cypress/cypressParallel.sh index e0aaf0b94..87900d225 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