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

:green_heart: Change code coverage threshold in gulpfile

parent f35eee59
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!30Auth
Pipeline #
...@@ -78,7 +78,12 @@ gulp.task('test', ['pre-test'], () => { ...@@ -78,7 +78,12 @@ gulp.task('test', ['pre-test'], () => {
.pipe(istanbul.writeReports()) .pipe(istanbul.writeReports())
.pipe(istanbul.enforceThresholds({ .pipe(istanbul.enforceThresholds({
thresholds: { thresholds: {
global: 80 global: {
statements: 80,
branches: 75,
lines: 80,
functions: 80
}
} }
})) }))
.on('error', () => { .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