summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-abort2.js
blob: 7c7be9b530e2d265e890432f8648620144066820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';
require('../common');
const http = require('http');

const server = http.createServer(function(req, res) {
  res.end('Hello');
});

server.listen(0, function() {
  const req = http.get({port: this.address().port}, function(res) {
    res.on('data', function(data) {
      req.abort();
      server.close();
    });
  });
});