mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 22:31:35 +00:00

PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
19 lines
447 B
JavaScript
19 lines
447 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
var server = http.Server(function(req, res) {
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.end('hello world\n');
|
|
});
|
|
server.listen(0, function() {
|
|
var req = http.get({port: this.address().port}, function(res) {
|
|
res.on('end', function() {
|
|
assert.ok(!req.end());
|
|
server.close();
|
|
});
|
|
res.resume();
|
|
});
|
|
});
|