Files
prompts/script/test
2026-07-06 22:08:38 +02:00

13 lines
200 B
Bash
Executable File

#!/usr/bin/env bash
# script/test: run the test suite.
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
main() {
cd "$ROOT"
echo "No tests defined."
}
main "$@"