test: disable global variable check for "test-repl-options.js"

Previously, the "global" mode of REPLs was broken when created after another
non-global REPL (they would end up sharing the same context). Now that "global"
mode is fixed for that case (b1e78cef097c682ed63528ad7efe294b18a9fb1d), this
test case gets its global scope modified with "module" and other REPL-specific
properties, so disable the global check.
This commit is contained in:
Nathan Rajlich 2012-10-15 14:51:43 -07:00
parent 1205734e69
commit cca15e8e33

View File

@ -24,6 +24,8 @@ var common = require('../common'),
Stream = require('stream'),
repl = require('repl');
common.globalCheck = false;
// create a dummy stream that does nothing
var stream = new Stream();
stream.write = stream.pause = stream.resume = function(){};