From 49b2a0e5bb1bce5322edd9bd11cc5ccb4193bf1f Mon Sep 17 00:00:00 2001 From: Otto Allmendinger Date: Fri, 10 Jan 2020 08:51:19 +0100 Subject: [PATCH] fix(test): use `--recursive` in coverage Some tests were still skipped Issue: BG-16466 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2d6fff14..affd593e 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "scripts": { "coverage-report": "nyc report --reporter=lcov", "coverage-html": "nyc report --reporter=html", - "coverage": "nyc --check-coverage --branches 90 --functions 90 mocha test/ test/forks/*", + "coverage": "nyc --check-coverage --branches 90 --functions 90 mocha --recursive", "integration": "mocha test/integration/", "standard": "standard", "test": "npm run standard && npm run coverage",