From 2a0b619f7b830b2e34f1707f4428c77a6fcf33fc Mon Sep 17 00:00:00 2001 From: Alexis Campailla Date: Tue, 14 Jan 2014 00:45:00 -0800 Subject: [PATCH] text: give more time to test-next-tick-error-spin The previous timeout was too short for certain execution conditions (Windows, debug build, first execution). --- test/simple/test-next-tick-error-spin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simple/test-next-tick-error-spin.js b/test/simple/test-next-tick-error-spin.js index 4ed31511be..e0d47a2147 100644 --- a/test/simple/test-next-tick-error-spin.js +++ b/test/simple/test-next-tick-error-spin.js @@ -29,7 +29,7 @@ if (process.argv[2] !== 'child') { }); var timer = setTimeout(function() { throw new Error('child is hung'); - }, 500); + }, 3000); child.on('exit', function(code) { console.error('ok'); assert(!code);