Skip to content

Commit cc75881

Browse files
committed
Adjust tests.
1 parent b2e2eec commit cc75881

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.taprc

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"timeout": 30,
3-
"reporter": "spec"
3+
"reporter": "spec",
4+
"check-coverage": false,
5+
"no-coverage": true,
6+
"test-regex": "\\w+\\.test\\.js$"
47
}

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"license": "MIT",
1818
"scripts": {
1919
"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",
20+
"test": "c8 tap",
21+
"test:cov": "c8 --reporter=html --reporter=text tap",
22+
"test:ci": "tap",
2323
"prepare": "husky install"
2424
},
2525
"engines": {

0 commit comments

Comments
 (0)