node/test/parallel/test-http-client-aborted-event.js
Kyle E. Mitchell 6d6f9e5c02 test: add test for HTTP client "aborted" event
PR-URL: https://github.com/nodejs/node/pull/7376
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Fedor Indutny <fedor@indutny.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-11-02 09:06:23 +01:00

19 lines
440 B
JavaScript

'use strict';
const common = require('../common');
const http = require('http');
const server = http.Server(function(req, res) {
res.write('Part of my res.');
res.destroy();
});
server.listen(0, common.mustCall(function() {
http.get({
port: this.address().port,
headers: { connection: 'keep-alive' }
}, common.mustCall(function(res) {
server.close();
res.on('aborted', common.mustCall(function() {}));
}));
}));