node/test/parallel/test-http-client-timeout.js
cjihrig ff1efa6087 test: use const for all require() calls
PR-URL: https://github.com/nodejs/node/pull/10550
Reviewed-By: Rich Trott <rtrott@gmail.com>
2017-01-02 18:28:18 -05:00

33 lines
701 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const http = require('http');
var options = {
method: 'GET',
port: undefined,
host: '127.0.0.1',
path: '/'
};
var server = http.createServer(function(req, res) {
// this space intentionally left blank
});
server.listen(0, options.host, function() {
options.port = this.address().port;
var req = http.request(options, function(res) {
// this space intentionally left blank
});
req.on('close', function() {
server.close();
});
function destroy() {
req.destroy();
}
var s = req.setTimeout(1, destroy);
assert.ok(s instanceof http.ClientRequest);
req.on('error', destroy);
req.end();
});