Skip to content

Commit

Permalink
Do not run nyc on npm test task.
Browse files Browse the repository at this point in the history
Since, nyc 15.0+ is unstable...
istanbuljs/nyc#1263
  • Loading branch information
tokuhirom committed Nov 2, 2023
1 parent ce3ed65 commit 2b4cf84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -13,7 +13,8 @@
],
"scripts": {
"pretest": "npm run format && npm run build",
"test": "TEST_PORT=1234 TS_NODE_CACHE=0 nyc mocha",
"test": "TEST_PORT=1234 TS_NODE_CACHE=0 mocha",
"covtest": "TEST_PORT=1234 TS_NODE_CACHE=0 nyc mocha",
"prettier": "prettier \"{lib,test}/**/*.ts\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- -l",
Expand Down

0 comments on commit 2b4cf84

Please sign in to comment.