2025-03-04 11:30:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-03-05 10:30:05 +00:00
|
|
|
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
|
|
|
|
'''
|
2025-03-04 11:30:47 +00:00
|
|
|
wait
|