Skip to content
This repository has been archived by the owner on Apr 11, 2022. It is now read-only.

Commit

Permalink
Add code coverage report generation
Browse files Browse the repository at this point in the history
  • Loading branch information
filmaj committed Mar 31, 2017
1 parent d8d9c18 commit cc204ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
/node_modules/
npm-debug.log

.vscode/
.vscode/

coverage/
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"phonegap": "./bin/phonegap.js"
},
"scripts": {
"test": "node node_modules/jasmine-node/bin/jasmine-node --color spec; node_modules/eslint/bin/eslint.js ./"
"test": "node node_modules/jasmine-node/bin/jasmine-node --color spec; node_modules/eslint/bin/eslint.js ./",
"cover": "istanbul cover --print detail node_modules/jasmine-node/bin/jasmine-node -- --color spec"
},
"engineStrict": true,
"engines": {
Expand Down Expand Up @@ -49,7 +50,8 @@
"devDependencies": {
"chdir": "0.0.x",
"eslint": "^3.12.2",
"jasmine-node": "1.14.5"
"jasmine-node": "1.14.5",
"istanbul": "0.4.5"
},
"optionalDependencies": {},
"contributors": [
Expand Down

0 comments on commit cc204ea

Please sign in to comment.