We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2e2eec commit cc75881Copy full SHA for cc75881
.taprc
@@ -1,4 +1,7 @@
1
{
2
"timeout": 30,
3
- "reporter": "spec"
+ "reporter": "spec",
4
+ "check-coverage": false,
5
+ "no-coverage": true,
6
+ "test-regex": "\\w+\\.test\\.js$"
7
}
package.json
@@ -17,9 +17,9 @@
17
"license": "MIT",
18
"scripts": {
19
"lint": "eslint '**/*.js' --fix",
20
- "test": "c8 --all tap --no-coverage test/**/*.test.js",
21
- "test:cov": "c8 --all --reporter html tap --no-coverage test/**/*.test.js",
22
- "test:ci": "c8 --all --reporter text-summary tap --no-coverage test/**/*.test.js",
+ "test": "c8 tap",
+ "test:cov": "c8 --reporter=html --reporter=text tap",
+ "test:ci": "tap",
23
"prepare": "husky install"
24
},
25
"engines": {
0 commit comments