Skip to content

Commit 03ca6d2

Browse files
vweeversLars-Magnus Skog
authored and
Lars-Magnus Skog
committed
Add nyc and browser code coverage (#169)
* remove old coverage setup * add nyc and coveralls * temporarily depend on airtap/airtap#coverage * coverage is opt-in now * remove faucet * Switch to [email protected]
1 parent 7b5e87e commit 03ca6d2

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
coverage
33
npm-debug.log
4+
.nyc_output

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ matrix:
1212
env: CMD=test
1313
- node_js: 10
1414
env: CMD=test
15-
- node_js: stable
16-
env: CMD=report-coverage
1715
- node_js: stable
1816
env: CMD=test-browsers
1917
addons:
@@ -24,5 +22,7 @@ matrix:
2422
script:
2523
- DEBUG=airtap:* npm run $CMD
2624

25+
after_success: npm run coverage
26+
2727
notifications:
2828
email: false

package.json

+7-9
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@
2626
"safe-buffer": "~5.1.1"
2727
},
2828
"devDependencies": {
29-
"airtap": "^0.0.8",
30-
"faucet": "^0.0.1",
31-
"istanbul": "^0.4.2",
32-
"istanbul-coveralls": "^1.0.3",
29+
"airtap": "0.0.9",
30+
"coveralls": "^3.0.2",
31+
"nyc": "^12.0.2",
3332
"rimraf": "^2.6.2",
3433
"standard": "^11.0.0",
3534
"tape": "^4.8.0"
@@ -38,11 +37,10 @@
3837
"./immediate.js": "./immediate-browser.js"
3938
},
4039
"scripts": {
41-
"test": "standard && node test.js | faucet",
42-
"test-browsers": "airtap --sauce-connect --loopback airtap.local --no-coverage test.js",
43-
"test-browser-local": "airtap --no-coverage --local 9000 test.js",
44-
"coverage": "istanbul cover -i memdown.js ./node_modules/.bin/tape ./test.js && istanbul check-coverage --lines 90 --function 80 --statements 90 --branches 80",
45-
"report-coverage": "npm run coverage && istanbul-coveralls"
40+
"test": "standard && nyc node test.js",
41+
"test-browsers": "airtap --sauce-connect --loopback airtap.local --coverage test.js",
42+
"test-browser-local": "airtap --coverage --local 9000 test.js",
43+
"coverage": "nyc report --reporter=text-lcov | coveralls"
4644
},
4745
"license": "MIT",
4846
"engines": {

0 commit comments

Comments
 (0)