summaryrefslogtreecommitdiff
path: root/test/parallel/test-force-repl.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-force-repl.js')
-rw-r--r--test/parallel/test-force-repl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-force-repl.js b/test/parallel/test-force-repl.js
index 37f2f60334..5507d7401b 100644
--- a/test/parallel/test-force-repl.js
+++ b/test/parallel/test-force-repl.js
@@ -5,7 +5,7 @@ const spawn = require('child_process').spawn;
// spawn a node child process in "interactive" mode (force the repl)
const cp = spawn(process.execPath, ['-i']);
-var timeoutId = setTimeout(function() {
+const timeoutId = setTimeout(function() {
common.fail('timeout!');
}, common.platformTimeout(5000)); // give node + the repl 5 seconds to start