9 lines
413 B
Bash
9 lines
413 B
Bash
cypressParallel() {
|
|
# TEST_PATHS=(
|
|
# '...'
|
|
# )
|
|
# printf "%s\n" "${TEST_PATHS[@]}" | xargs -P $1 -I {} sh -c 'xvfb-run -a cypress run --headless --browser chromium --spec {}'
|
|
find 'test/cypress/integration' -mindepth 1 -maxdepth 1 -type d | xargs -P "$1" -I {} sh -c 'echo "🔷 {}" && xvfb-run -a cypress run --headless --browser chromium --spec "{}" --quiet > /dev/null 2>&1'
|
|
wait
|
|
}
|