Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
set 80% as minimum for coverage tests
  • Loading branch information
macrisguncay committed Mar 19, 2020
commit 4c4558ab9c3c00aee6e8b75fc2f50843744ac656
8 changes: 7 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ module.exports = function (config) {
coverageIstanbulReporter: {
dir: require('path').join(__dirname, './coverage/time-tracker'),
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true
fixWebpackSourcePaths: true,
thresholds: {
statements: 80,
lines: 80,
branches: 80,
functions: 80
}
},
reporters: ['progress', 'kjhtml'],
port: 9876,
Expand Down