#!/usr/bin/env bash # # scripts/test.sh — project test runner (framework entry point). # # LOCAL GATE: offline decoder unit suite; no hardware required (#355 # scope: "test logic on the laptop"). # set -uo pipefail cd "$(dirname "${BASH_SOURCE[0]}")/.." || exit 1 status=0 bash tests/run-tests.sh || status=1 exit "$status"