Skip to content

Commit

Permalink
chore: fix npm test command (#6010)
Browse files Browse the repository at this point in the history
The `test` command referenced the task `npm run coverage`, which was renamed to `unit-with-coverage` in #5779.
  • Loading branch information
TimvdLippe committed Jun 15, 2020
1 parent 398c16d commit c701ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down

0 comments on commit c701ea1

Please sign in to comment.