node/test/parallel/test-repl-tab.js
Rich Trott 02fe8215f0 test: load common.js to test for global leaks
common.js contains code that checks for variables leaking into the
global namespace. Load common.js in all tests that do not
intentionally leak variables.

PR-URL: https://github.com/nodejs/node/pull/3095
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
2015-10-01 20:16:35 -07:00

21 lines
480 B
JavaScript

'use strict';
require('../common');
var assert = require('assert');
var util = require('util');
var repl = require('repl');
var zlib = require('zlib');
// just use builtin stream inherited from Duplex
var putIn = zlib.createGzip();
var testMe = repl.start('', putIn, function(cmd, context, filename, callback) {
callback(null, cmd);
});
testMe._domain.on('error', function(e) {
assert.fail();
});
testMe.complete('', function(err, results) {
assert.equal(err, null);
});