Browse Source

Adds code coverage report the output of `npm test` and adds detailed html code coverage report using the command `npm run-script test-cov`

mbroad/unittest/lib/shared
MacLeod Broad 6 years ago
parent
commit
b45075807c
No known key found for this signature in database GPG Key ID: F1B295D13C3CC9CF
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      package.json

+ 3
- 1
package.json View File

@ -26,7 +26,8 @@
],
"main": "./dist/vis.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"test": "nyc mocha --compilers js:babel-core/register",
"test-cov": "nyc --reporter=html mocha --compilers js:babel-core/register",
"build": "gulp",
"lint": "gulp lint",
"watch": "gulp watch",
@ -63,6 +64,7 @@
"merge-stream": "^1.0.1",
"mocha": "^3.4.2",
"mocha-jsdom": "^1.1.0",
"nyc": "^11.2.1",
"rimraf": "^2.6.1",
"test-console": "^1.0.0",
"uglify-js": "^2.8.29",

Loading…
Cancel
Save