14 lines
192 B
Plaintext
14 lines
192 B
Plaintext
|
#!/usr/bin/env bash
|
|||
|
set -euo pipefail
|
|||
|
|
|||
|
⚡️test() {
|
|||
|
_help-line "Run all the tests" "$@"
|
|||
|
exit=0
|
|||
|
for test in test/test*; do
|
|||
|
bash $test || exit=1
|
|||
|
done
|
|||
|
exit $exit
|
|||
|
}
|
|||
|
|
|||
|
source ⚡️
|