Browse Source

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).
v0.11.11-release
Alexis Campailla 11 years ago
committed by Timothy J Fontaine
parent
commit
2a0b619f7b
  1. 2
      test/simple/test-next-tick-error-spin.js

2
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);

Loading…
Cancel
Save