Files
timmy-config/scripts/test_runner.sh
Alexander Whitestone b18fc76868
All checks were successful
PR Checklist / pr-checklist (pull_request) Successful in 1m19s
feat: CLI safety/test harness for scripts/ suite (#438)
2026-04-09 12:40:50 -04:00

10 lines
283 B
Bash
Executable File

#!/usr/bin/env bash
# test_runner.sh — Convenience wrapper for test_harness.sh
# Runs the test harness with sensible defaults for local development.
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
exec "${SCRIPT_DIR}/test_harness.sh" --verbose "$@"