From c355787d1a7238a16f135781d62a7bf1d80d8a1b Mon Sep 17 00:00:00 2001 From: James Talmage Date: Thu, 10 Dec 2015 18:54:42 -0500 Subject: [PATCH] fix `npm run report` - it was using the old coverage folder name --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2cbf2f9f0..f247e0e91 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "build": "node ./build-tests", "instrument": "node ./build-self-coverage.js", "run-tests": "tap -b ./test/built-*.js ./test/source-map-cache.js", - "report": "istanbul report --include=self_coverage/*.json lcov text", + "report": "istanbul report --include=./.self_coverage/*.json lcov text", "cover": "npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report", "dev": "npm run clean && npm run build && npm run run-tests" },