mirror of
https://github.com/obra/superpowers.git
synced 2026-06-09 17:02:07 +00:00
17 lines
319 B
Bash
17 lines
319 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Run all Antigravity (agy) integration tests.
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
|
||
|
|
echo "=== Antigravity integration tests ==="
|
||
|
|
|
||
|
|
for t in "$SCRIPT_DIR"/test-*.sh; do
|
||
|
|
echo
|
||
|
|
echo ">>> $t"
|
||
|
|
bash "$t"
|
||
|
|
done
|
||
|
|
|
||
|
|
echo
|
||
|
|
echo "=== All Antigravity tests passed ==="
|