test: give repl-timeout-throw more time to run

Short timeout was causing the test to fail on Windows debug builds.
This commit is contained in:
Alexis Campailla
2014-01-14 01:32:07 -08:00
committed by Timothy J Fontaine
parent 0f10dd4cb2
commit bb2af7dd4d

View File

@@ -65,7 +65,7 @@ child.stdout.once('data', function() {
' });\n' +
'});"";\n');
setTimeout(child.stdin.end.bind(child.stdin), 50);
setTimeout(child.stdin.end.bind(child.stdin), 200);
}
});