Browse Source

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 (b1e78cef09), this
test case gets its global scope modified with "module" and other REPL-specific
properties, so disable the global check.
v0.8.13-release
Nathan Rajlich 12 years ago
parent
commit
cca15e8e33
  1. 2
      test/simple/test-repl-options.js

2
test/simple/test-repl-options.js

@ -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(){};

Loading…
Cancel
Save