summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-abort2.js
blob: 477d12b25827b270c0fd6a5ca72f270c5a74ecfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';
var common = require('../common');
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();
    });
  });
});