fix(cypressParallel.sh): refs #6695 improve test execution output for clarity

This commit is contained in:
Alex Moreno 2025-03-06 08:23:04 +01:00
parent b3f8a42885
commit a53f5db047
1 changed files with 5 additions and 7 deletions

View File

@ -4,14 +4,12 @@ find 'test/cypress/integration' \
-mindepth 1 \ -mindepth 1 \
-maxdepth 1 \ -maxdepth 1 \
-type d | \ -type d | \
xargs -P "$1" -I {} \ xargs -P "$1" -I {} sh -c '
sh -c ''' echo "🔷 Ejecutando tests en: {}" &&
echo "🔷 {}" &&
xvfb-run -a cypress run \ xvfb-run -a cypress run \
--headless \ --headless \
--browser chromium \ --spec "{}" \
--spec "{}" \ --quiet \
--quiet \
> /dev/null 2>&1 > /dev/null 2>&1
''' '
wait wait