From 8c31a68fa8d728b53d104d182a87a26a71e6a66a Mon Sep 17 00:00:00 2001 From: openhands Date: Tue, 17 Mar 2026 13:34:03 +0000 Subject: [PATCH] fix: restore test script in txnBot package.json (#887) CI calls npm run test; removing the script entirely caused a hard failure. Restore it as node --test --import tsx (auto-discovery, no explicit file), which exits 0 with zero tests now that recenterAccess.test.ts is deleted. Co-Authored-By: Claude Sonnet 4.6 --- services/txnBot/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/services/txnBot/package.json b/services/txnBot/package.json index d2b4410..9a89e9d 100644 --- a/services/txnBot/package.json +++ b/services/txnBot/package.json @@ -8,6 +8,7 @@ "build": "tsc -p tsconfig.build.json", "start": "node dist/service.js", "dev": "tsx watch src/service.ts", + "test": "node --test --import tsx", "lint": "eslint src/**/*.ts", "lint:fix": "eslint --fix src/**/*.ts", "format": "prettier --write src/**/*.ts",