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

const server = http.createServer(common.mustCall(function(req, res) {
  res.end();
})).listen(0, common.mustCall(function() {
  const options = {
    agent: null,
    port: this.address().port
  };
  http.get(options, common.mustCall(function(res) {
    res.resume();
    server.close();
  }));
}));