mirror of https://github.com/grpc/grpc-node.git
Merge pull request #372 from nicolasnoble/increase-mocha-timeout
Increasing mocha timeout to 5s up from 2s.
This commit is contained in:
commit
e6a64a3720
|
|
@ -68,7 +68,7 @@ gulp.task('build', 'Build native package', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('test', 'Run all tests', ['build'], () => {
|
gulp.task('test', 'Run all tests', ['build'], () => {
|
||||||
return gulp.src(`${testDir}/*.js`).pipe(mocha({reporter: 'mocha-jenkins-reporter'}));
|
return gulp.src(`${testDir}/*.js`).pipe(mocha({timeout: 5000, reporter: 'mocha-jenkins-reporter'}));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('doc.gen', 'Generate docs', (cb) => {
|
gulp.task('doc.gen', 'Generate docs', (cb) => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue