0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-21 21:19:50 +01:00
nodejs/test/parallel/test-http-flush-headers.js
Ruben Bridgewater 463d1a490f
test,benchmark,doc: enable dot-notation rule
This enables the eslint dot-notation rule for all code instead of
only in /lib.

PR-URL: https://github.com/nodejs/node/pull/18749
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matheus Marchini <matheus@sthima.com>
2018-02-16 19:37:43 +01:00

21 lines
472 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const http = require('http');
const server = http.createServer();
server.on('request', function(req, res) {
assert.strictEqual(req.headers.foo, 'bar');
res.end('ok');
server.close();
});
server.listen(0, '127.0.0.1', function() {
const req = http.request({
method: 'GET',
host: '127.0.0.1',
port: this.address().port,
});
req.setHeader('foo', 'bar');
req.flushHeaders();
});