From 075818d5515e37458ccc3c628bf5c72f385a5629 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Fri, 12 May 2023 15:25:58 -0700 Subject: [PATCH] Adding test coverage reporting for just unit tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 408b050..91a62d8 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "start": "node index.js", "test": "npm run test:all", "test:all": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/", - "test:unit": "export SVC_ENV=test && mocha --exit --timeout 15000 --recursive test/unit/", + "test:unit": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit/", "test:e2e:auto": "export SVC_ENV=test && mocha --exit --timeout 15000 test/e2e/automated/", "test:temp": "export SVC_ENV=test && mocha --exit --timeout 15000 -g '#rate-limit' test/unit/json-rpc/", "lint": "standard --env mocha --fix",