Skip to content

Commit

Permalink
adapt test coverage script to require full coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonad committed Mar 10, 2019
1 parent 85c134a commit 1d0f426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"scripts": {
"dist": "rollup -c",
"debug": "live-server --port=3443 --entry-file=test.html",
"test": "npm run dist && npm run lint && nyc --check-coverage --lines 100 node ./dist/test.js --repitition-time 50",
"test": "npm run dist && npm run lint && nyc --check-coverage --lines 100 --branches 100 --functions 100 --statements 100 node ./dist/test.js --repitition-time 50",
"test-extensive": "npm run test -- --repitition-time 30000",
"test-code-coverage": "npm run dist && nyc --reporter html node ./dist/test.js",
"trace-deopt": "clear && rollup -c && node --trace-deopt dist/test.js",
Expand Down

0 comments on commit 1d0f426

Please sign in to comment.