From c701ea194a12b5842a224ba4911f73413b89daf1 Mon Sep 17 00:00:00 2001 From: Tim van der Lippe Date: Mon, 15 Jun 2020 06:54:58 +0100 Subject: [PATCH] chore: fix npm test command (#6010) The `test` command referenced the task `npm run coverage`, which was renamed to `unit-with-coverage` in #5779. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 22e78b78..a022e27a 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "funit": "PUPPETEER_PRODUCT=firefox npm run unit", "debug-unit": "node --inspect-brk test/test.js", "test-doclint": "mocha --config mocha-config/doclint-tests.js", - "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-doclint && npm run test-types", "prepare": "node typescript-if-required.js", "prepublishOnly": "npm run tsc", "dev-install": "npm run tsc && node install.js",