Skip to content
Snippets Groups Projects
Commit 5bdeca3d authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

:green_heart: Change coverage threshold for branches

Statements, functions and lines threshold at 80% global
Branches at 75% global
parent 6da004e7
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!27Implement UC201 - Select Location
Pipeline #
......@@ -79,7 +79,12 @@ gulp.task('test', ['pre-test'], () => {
.pipe(istanbul.writeReports())
.pipe(istanbul.enforceThresholds({
thresholds: {
global: 80
global: {
statements: 80,
branches: 75,
lines: 80,
functions: 80
}
}
}))
.on('error', () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment