From 0ca8807519fd7ec9e4485a0187753100ac311b13 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Fri, 16 Jun 2017 14:49:49 -0700 Subject: [PATCH] increase timeout on file-utils tests --- test/node-unit/file-utils.spec.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/node-unit/file-utils.spec.js b/test/node-unit/file-utils.spec.js index 540589821d..3ff1bd4d7e 100644 --- a/test/node-unit/file-utils.spec.js +++ b/test/node-unit/file-utils.spec.js @@ -13,6 +13,10 @@ describe('file utils', function () { var tmpFile = path.join.bind(path, tmpDir); var symlinkSupported = false; + beforeEach(function () { + this.timeout(2000); + }); + (function testSymlinkSupport () { makeTempDir();