Skip to content

Commit 7f64f55

Browse files
committedApr 5, 2018
Make test coverage to be optional.
1 parent 97e6120 commit 7f64f55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
22
verbose: false,
3-
collectCoverage: true,
3+
collectCoverage: false,
44
coverageDirectory: './coverage/',
55
};

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"lint": "eslint ./src/*",
88
"test": "jest",
9-
"ci": "npm run lint && npm run test",
9+
"ci": "npm run lint && npm run test -- --coverage",
1010
"codecov": "codecov"
1111
},
1212
"repository": {

0 commit comments

Comments
 (0)
Please sign in to comment.