From a6aff1a5b9352ab059c06b865123dca18669f510 Mon Sep 17 00:00:00 2001 From: mahseiah_ai Date: Tue, 5 May 2026 14:59:24 -0400 Subject: [PATCH] build: add test and test:coverage scripts to package.json - bun test v1.3.12 (700fc117) runs bun test (discovers tests in test/ directory) - bun test v1.3.12 (700fc117) runs tests with coverage reporting --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index cf3bdf6..eb5bd7e 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "scripts": { "build": "bunx tsc", "prepare": "npm run build", - "test": "echo \"Error: no test specified\" && exit 1" + "test": "bun test", + "test:coverage": "bun test --coverage" }, "repository": { "type": "git",