Skip to content

Commit

Permalink
test: add test for HTTP client "aborted" event
Browse files Browse the repository at this point in the history
PR-URL: #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>
  • Loading branch information
kemitchell authored and evanlucas committed Nov 3, 2016
1 parent 3af9453 commit ed3f80a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test/parallel/test-http-client-aborted-event.js
@@ -0,0 +1,18 @@
'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() {}));
}));
}));

0 comments on commit ed3f80a

Please sign in to comment.