Skip to content

Commit

Permalink
Fix coverage settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kristerkari committed Apr 4, 2018
1 parent 1c24bbe commit 8e3040a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules
yarn-error.log
coverage
.coverage
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,20 @@
"semi": true,
"singleQuote": false,
"trailingComma": "none"
},
"jest": {
"coverageDirectory": "./.coverage/",
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
}
}
}

0 comments on commit 8e3040a

Please sign in to comment.