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

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

server.listen(common.PORT, function() {
  var req = http.get({port: common.PORT}, function(res) {
    res.on('data', function(data) {
      req.abort();
      server.close();
    });
  });
});