From 1c3435a8a2154aae693d970e2d1b4de3fa3907fc Mon Sep 17 00:00:00 2001 From: Theresa Gresch Date: Mon, 12 Aug 2019 10:27:08 +0200 Subject: [PATCH] Adapt code coverage configuration --- frontend/karma.conf.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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, + //}, + // }, }, },