mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
585 B
27 lines
585 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const assert = require('assert');
|
|
|
|
// Fix for https://github.com/nodejs/node/issues/14368
|
|
|
|
const server = http.createServer(handle);
|
|
|
|
function handle(req, res) {
|
|
res.on('error', common.mustCall((err) => {
|
|
assert.strictEqual(err.message, 'write after end');
|
|
server.close();
|
|
}));
|
|
|
|
res.write('hello');
|
|
res.end();
|
|
|
|
setImmediate(common.mustCall(() => {
|
|
res.write('world');
|
|
}));
|
|
}
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
http.get(`http://localhost:${server.address().port}`);
|
|
}));
|
|
|