From 3cc4173399c1e5cbd8d3083467e68f069da20e8b Mon Sep 17 00:00:00 2001 From: Kazuki-Nakanishi Date: Fri, 10 Mar 2017 13:59:44 +0000 Subject: [PATCH] Extend timeout for the test case of installing non-existant path. (#1191) to fix timeout on slower hosts --- test/red/runtime/nodes/registry/installer_spec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/red/runtime/nodes/registry/installer_spec.js b/test/red/runtime/nodes/registry/installer_spec.js index 1e6b22437..de401316c 100644 --- a/test/red/runtime/nodes/registry/installer_spec.js +++ b/test/red/runtime/nodes/registry/installer_spec.js @@ -124,6 +124,7 @@ describe('nodes/registry/installer', function() { }); }); it("rejects when non-existant path is provided", function(done) { + this.timeout(10000); var resourcesDir = path.resolve(path.join(__dirname,"..","resources","local","TestNodeModule","node_modules","NonExistant")); installer.installModule(resourcesDir).then(function() { done(new Error("Unexpected success"));