We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe20241 commit d2d6af3Copy full SHA for d2d6af3
2 files changed
.github/workflows/test.yml
@@ -18,7 +18,7 @@ jobs:
18
node-version: ${{ matrix.node-version }}
19
- run: npm ci
20
- run: npm run build
21
- - run: npm run test:coverage
+ - run: npm run test
22
types:
23
runs-on: ubuntu-latest
24
strategy:
package.json
@@ -12,8 +12,9 @@
12
"clean": "rm -rf ./dist",
13
"perf": "./node_modules/.bin/matcha perf.js",
14
"rollup": "./node_modules/.bin/rollup -c",
15
- "test": "mocha -- -R spec",
16
- "test:coverage": "c8 --check-coverage --lines 88 --functions 100 --src ./lib npm run test",
+ "test": "npm run test:coverage",
+ "test:specs": "mocha -- -R spec",
17
+ "test:coverage": "c8 --check-coverage --lines 87 --functions 100 --src ./lib npm run test:specs",
"ts": "./node_modules/.bin/tsc -p ."
},
"files": [
0 commit comments