Adapt coverage thresholds per file

This commit is contained in:
Theresa Gresch 2019-08-08 17:51:24 +02:00
parent 6dde038ad9
commit 0b54482aaa

View File

@ -76,13 +76,13 @@ module.exports = (config) => {
},
// thresholds per file
each: {
statements: 0,
lines: 0,
branches: 0,
functions: 0,
statements: 90,
lines: 90,
branches: 90,
functions: 90,
overrides: {
"baz/component/**/*.js": {
statements: 0,
statements: 90,
},
},
},