From 0e5c891bc085b6bd03e04c06c6e80423ec1b5f50 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sun, 24 Mar 2024 14:47:56 -0700 Subject: [PATCH] adjust timeout for node 12 on mac --- test/index.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/index.test.js b/test/index.test.js index 25a753e6..ced5b6a2 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -62,6 +62,8 @@ describe('gulp', function() { }); it('can run against gulpfile.cjs', function (done) { + this.timeout(5000); + var cli = path.join(__dirname, '../bin/gulp.js'); var opts = { cwd: path.join(__dirname, 'fixtures/gulpfiles/cjs' ) }; cp.exec(cli, opts, function (err, stdout, stderr) {