node/test/parallel/test-net-local-address-port.js
Rich Trott 1762db0142 test: remove unused variables from net tests
Remove a handful of variables that are declared but never used in the
tests for the net module.

PR-URL: https://github.com/nodejs/node/pull/4430
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2015-12-29 11:16:21 -08:00

28 lines
633 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var net = require('net');
var conns = 0;
var server = net.createServer(function(socket) {
conns++;
assert.equal(common.localhostIPv4, socket.localAddress);
assert.equal(socket.localPort, common.PORT);
socket.on('end', function() {
server.close();
});
socket.resume();
});
server.listen(common.PORT, common.localhostIPv4, function() {
var client = net.createConnection(common.PORT, common.localhostIPv4);
client.on('connect', function() {
client.end();
});
});
process.on('exit', function() {
assert.equal(1, conns);
});