fix(cypressParallel.sh): refs #6695 improve test execution output for clarity
This commit is contained in:
parent
b3f8a42885
commit
a53f5db047
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue