biome/e2e-tests/test-all.sh
2025-02-13 18:08:20 +01:00

12 lines
151 B
Bash
Executable file

#!/bin/sh
set -eu
for x in *; do
if test -d "$x"; then
echo "Testing $x..."
cd "$x"
sh test.sh
cd ..
fi
done