summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-let-process.js
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2018-05-14 14:51:50 +0200
committerRuben Bridgewater <ruben@bridgewater.de>2018-05-19 17:55:55 +0200
commitf954aba39ee02193beb2dbddc6c0ea0edcca7c74 (patch)
treeabe4971fb9ba0bb9c10e2007803f3426d32343dc /test/parallel/test-repl-let-process.js
parentcbee12c70160ec4d123194668451c908faf446bd (diff)
downloadandroid-node-v8-f954aba39ee02193beb2dbddc6c0ea0edcca7c74.tar.gz
android-node-v8-f954aba39ee02193beb2dbddc6c0ea0edcca7c74.tar.bz2
android-node-v8-f954aba39ee02193beb2dbddc6c0ea0edcca7c74.zip
repl: make console, module and require non-enumerable
This aligns these globals with the regular context. PR-URL: https://github.com/nodejs/node/pull/20717 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'test/parallel/test-repl-let-process.js')
-rw-r--r--test/parallel/test-repl-let-process.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/parallel/test-repl-let-process.js b/test/parallel/test-repl-let-process.js
index 3e6c3e8566..dd8fa60f46 100644
--- a/test/parallel/test-repl-let-process.js
+++ b/test/parallel/test-repl-let-process.js
@@ -2,8 +2,6 @@
const common = require('../common');
const repl = require('repl');
-common.globalCheck = false;
-
// Regression test for https://github.com/nodejs/node/issues/6802
const input = new common.ArrayStream();
repl.start({ input, output: process.stdout, useGlobal: true });