From 05eaf938faf1504be3e4bd52be90b35fd3db916d Mon Sep 17 00:00:00 2001 From: Michael Wolf Date: Sat, 10 Jan 2026 13:38:10 -0600 Subject: [PATCH] Add test command For now this just runs typescript tests. Eventually it'll do more than that. --- framework/cmd.d/test | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 framework/cmd.d/test diff --git a/framework/cmd.d/test b/framework/cmd.d/test new file mode 100755 index 0000000..eb2c630 --- /dev/null +++ b/framework/cmd.d/test @@ -0,0 +1,7 @@ +#!/bin/bash + +set -eu + +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +"$DIR"/../shims/pnpm tsx --test "$@"