summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-tab.js
blob: 0ebc94907715980f819bd892defc33adba81806b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict';
const common = require('../common');
const assert = require('assert');
const repl = require('repl');
const zlib = require('zlib');

// just use builtin stream inherited from Duplex
const putIn = zlib.createGzip();
const testMe = repl.start('', putIn, function(cmd, context, filename,
                                              callback) {
  callback(null, cmd);
});

testMe._domain.on('error', common.mustNotCall());

testMe.complete('', function(err, results) {
  assert.strictEqual(err, null);
});