|
33 | 33 | "build:wasm": "node build/wasm.js --docker", |
34 | 34 | "lint": "standard | snazzy", |
35 | 35 | "lint:fix": "standard --fix | snazzy", |
36 | | - "test": "tap test/*.js --no-coverage && mocha test/node-fetch && jest test/jest/test", |
| 36 | + "test": "npm run test:tap && npm run test:node-fetch && npm run test:jest", |
37 | 37 | "test:node-fetch": "node scripts/test-node-fetch.js 16 && mocha test/node-fetch || echo Skipping", |
38 | 38 | "test:jest": "jest test/jest/test", |
39 | | - "test:tap": "tap test/*.js --no-coverage ", |
40 | | - "test:tdd": "tap test/*.js -w --no-coverage-report", |
| 39 | + "test:tap": "tap test/*.js", |
| 40 | + "test:tdd": "tap test/*.js -w", |
41 | 41 | "test:typescript": "tsd", |
42 | | - "coverage": "standard | snazzy && tap test/*.js", |
43 | | - "coverage:ci": "npm run coverage -- --coverage-report=lcovonly", |
| 42 | + "coverage": "nyc npm run test", |
| 43 | + "coverage:ci": "npm run coverage -- --reporter=lcovonly", |
44 | 44 | "bench": "concurrently -k -s first npm:bench:server npm:bench:run", |
45 | 45 | "bench:server": "node benchmarks/server.js", |
46 | 46 | "prebench:run": "node benchmarks/wait.js", |
|
91 | 91 | "lib/llhttp/utils.js" |
92 | 92 | ] |
93 | 93 | }, |
| 94 | + "tap": { |
| 95 | + "check-coverage": false |
| 96 | + }, |
94 | 97 | "tsd": { |
95 | 98 | "directory": "test/types", |
96 | 99 | "compilerOptions": { |
|
0 commit comments