From 2ea062ae2b973ba27ef4bf2e856791ab4edf49d9 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sun, 1 Jun 2025 18:47:15 -0700 Subject: [PATCH] Removing e2e tests from unit tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a6d79cc..d0cfb38 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "type": "module", "scripts": { "start": "node index.js", - "test": "npm run test:all", + "test": "npm run test:unit", "test:all": "export BCH_DEX=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/", "test:unit": "export BCH_DEX=test && mocha --exit --timeout 15000 --recursive test/unit/", "test:e2e:auto": "export BCH_DEX=test && mocha --exit --timeout 30000 test/e2e/automated/",