We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b95f9d6 commit d82b566Copy full SHA for d82b566
package.json
@@ -11,7 +11,7 @@
11
"prepublishOnly": "npm test",
12
"pretest": "npm run codecheck",
13
"clean": "rm -rf node_modules/",
14
- "test": "nyc --check-coverage --lines 100 --branches 100 --functions 100 mocha",
+ "test": "nyc --check-coverage mocha",
15
"html-report": "nyc report --reporter=html"
16
},
17
"repository": {
@@ -68,5 +68,11 @@
68
"hooks": {
69
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
70
}
71
+ },
72
+ "nyc": {
73
+ "include": [ "lib/**" ],
74
+ "branches": 100,
75
+ "lines": 100,
76
+ "functions": 100
77
78
0 commit comments