1'use strict'; 2 3const common = require('../common'); 4const net = require('net'); 5const server = net.createServer(); 6 7// This test was based on an error raised by Haraka. 8// It caused server.getConnections to raise an exception. 9// Ref: https://github.com/haraka/Haraka/pull/1951 10 11server.getConnections(common.mustCall()); 12