From 4696fad8d5142c1cee4e40f6e09ea4d4800b69c7 Mon Sep 17 00:00:00 2001 From: Otto Allmendinger Date: Fri, 28 Nov 2025 17:36:34 +0100 Subject: [PATCH] feat(abstract-utxo): fix npm test to handle extra arguments Update test script to directly call mocha so that extra arguments can be properly passed through (e.g., npm test -- --grep pattern) Issue: BTC-2806 Co-authored-by: llm-git --- modules/abstract-utxo/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/abstract-utxo/package.json b/modules/abstract-utxo/package.json index eee0c43373..1d010861e2 100644 --- a/modules/abstract-utxo/package.json +++ b/modules/abstract-utxo/package.json @@ -31,7 +31,7 @@ "clean": "rm -rf ./dist", "lint": "eslint --quiet .", "prepare": "npm run build", - "test": "npm run unit-test", + "test": "mocha --recursive test/unit/", "unit-test": "mocha --recursive test/unit/", "integration-test": "mocha --recursive test/integration/" },