diff --git a/build.gradle b/build.gradle index e06f841bcaa4..fc7aa6be7e86 100644 --- a/build.gradle +++ b/build.gradle @@ -180,13 +180,13 @@ jacocoTestCoverageVerification { counter = "INSTRUCTION" value = "COVEREDRATIO" // TODO: in the future the following value should become higher than 0.92 - minimum = 0.893 + minimum = 0.892 } limit { counter = "CLASS" value = "MISSEDCOUNT" // TODO: in the future the following value should become less than 10 - maximum = 64 + maximum = 65 } } } diff --git a/jest.config.js b/jest.config.js index 2d9bdaf6311a..8f3838cd5088 100644 --- a/jest.config.js +++ b/jest.config.js @@ -105,10 +105,10 @@ module.exports = { coverageThreshold: { global: { // TODO: in the future, the following values should increase to at least 90% - statements: 87.72, - branches: 73.83, - functions: 82.29, - lines: 87.78, + statements: 87.69, + branches: 73.79, + functions: 82.27, + lines: 87.74, }, }, coverageReporters: ['clover', 'json', 'lcov', 'text-summary'],