From eb3991c0219f8fe083afde6f34b003881a8321e9 Mon Sep 17 00:00:00 2001 From: antfleet-ops <285575208+antfleet-ops@users.noreply.github.com> Date: Fri, 19 Jun 2026 13:48:31 +0300 Subject: [PATCH] Make npm test run package validation Constraint: no test framework exists in this package today.\nRejected: failing placeholder npm test | breaks routine validation in CI and clean checkouts.\nConfidence: high\nScope-risk: narrow\nDirective: keep npm test mapped to a real maintained validation command.\nTested: npm test; npm run build\nNot-tested: none. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4b9cdf6..4b3f715 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "dist/index.js", "scripts": { "prepare": "tsc", - "test": "echo \"Error: no test specified\" && exit 1", + "test": "npm run build", "build": "tsc", "dev": "tsx watch src/index.ts", "start": "node dist/index.js"