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 \
-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