mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

Many tests use assert.fail(null, null, msg) where it would be simpler to use common.fail(msg). This is largely because common.fail() is fairly new. This commit makes the replacement when applicable. PR-URL: https://github.com/nodejs/node/pull/7735 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
18 lines
446 B
JavaScript
18 lines
446 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var assert = require('assert');
|
|
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', common.fail);
|
|
|
|
testMe.complete('', function(err, results) {
|
|
assert.equal(err, null);
|
|
});
|