Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 5c21aad

Browse files
committed
update jscompiler test timeout to 20 seconds
We're now hitting the 10 second timeout on Travis. Ugly workaround: wait up to 20 seconds.
1 parent ccc0450 commit 5c21aad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ gulp.task('test.e2e', ['test.compile'], function(done) {
8181
done();
8282
return;
8383
}
84-
return gulp.src(['build/test/**/e2e*.js']).pipe(mocha({timeout: 10000}));
84+
return gulp.src(['build/test/**/e2e*.js']).pipe(mocha({timeout: 20000}));
8585
});
8686

8787
gulp.task('test', ['test.unit', 'test.e2e', 'test.check-format']);

0 commit comments

Comments
 (0)