Removing e2e tests from unit tests

This commit is contained in:
Chris Troutner
2025-06-01 18:47:15 -07:00
parent c6e5eb9dc9
commit 2ea062ae2b
+1 -1
View File
@@ -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/",