diff --git a/frontend/karma.conf.js b/frontend/karma.conf.js index 750b4a764..6a351f4ed 100644 --- a/frontend/karma.conf.js +++ b/frontend/karma.conf.js @@ -69,22 +69,22 @@ module.exports = (config) => { emitWarning: true, // set to `true` to not fail the test command when thresholds are not met // thresholds for all files global: { - statements: 90, + //statements: 90, lines: 90, - branches: 90, + //branches: 90, functions: 90, }, // thresholds per file each: { - statements: 90, + //statements: 90, lines: 90, - branches: 90, + //branches: 90, functions: 90, - overrides: { - "baz/component/**/*.js": { - statements: 90, - }, - }, + //overrides: { + //"baz/component/**/*.js": { + // statements: 90, + //}, + // }, }, },