Update karma coverage threshold values

We can update thresholds for JS test coverage to 60-85%.

Change-Id: Icbc2e026c13e017af29610dfa27deb03232d51c9
This commit is contained in:
Shu Muto 2016-11-10 17:26:04 +09:00
parent 8620df19ad
commit 629883a508

View File

@ -142,10 +142,10 @@ module.exports = function (config) {
// Coverage threshold values.
thresholdReporter: {
statements: 10, // target 100
branches: 0, // target 100
functions: 10, // target 100
lines: 10 // target 100
statements: 85, // target 100
branches: 60, // target 100
functions: 80, // target 100
lines: 85 // target 100
}
});
};