mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 02:44:59 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
33 lines
709 B
JavaScript
33 lines
709 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const options = {
|
|
method: 'GET',
|
|
port: undefined,
|
|
host: '127.0.0.1',
|
|
path: '/'
|
|
};
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
// this space intentionally left blank
|
|
});
|
|
|
|
server.listen(0, options.host, function() {
|
|
options.port = this.address().port;
|
|
const req = http.request(options, function(res) {
|
|
// this space intentionally left blank
|
|
});
|
|
req.on('close', function() {
|
|
server.close();
|
|
});
|
|
function destroy() {
|
|
req.destroy();
|
|
}
|
|
const s = req.setTimeout(1, destroy);
|
|
assert.ok(s instanceof http.ClientRequest);
|
|
req.on('error', destroy);
|
|
req.end();
|
|
});
|