node/test/parallel/test-http-client-timeout.js
Gibson Fahnestock 7a0e462f9f test: use eslint to fix var->const/let
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>
2017-01-11 11:43:52 +00:00

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();
});