Skip to content

Commit

Permalink
Fix npm test command
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 puppeteer#5779
  • Loading branch information
TimvdLippe committed Jun 12, 2020
1 parent 4205ff7 commit 7a7c021
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 7a7c021

Please sign in to comment.