Skip to content

Commit

Permalink
Merge pull request #79 from juttle/decrease-coverage-thresholds
Browse files Browse the repository at this point in the history
Lower coverage thresholds for system tests.
  • Loading branch information
Mark Stemm committed Mar 10, 2016
2 parents 39042ee + 865fb41 commit e1209ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function gulp_test() {
tests.push('!test/examples/**/*.spec.js');
timeout = 20000; // 20s, test timeout
slow = 15000; // 15s, slow warning
} else {
} else {
// downloading and running docker containers can take a bit the first
// time around
timeout = 300000; // 5min, test timeout
Expand Down Expand Up @@ -79,10 +79,10 @@ gulp.task('test-coverage', ['instrument'], function() {
if (argv.sys) {
thresholds = {
global: {
statements: 97,
branches: 82,
functions: 100,
lines: 97
statements: 95,
branches: 78,
functions: 97,
lines: 95
}
};
} else {
Expand Down

0 comments on commit e1209ad

Please sign in to comment.