mirror of https://github.com/nodejs/node.git
19 lines
414 B
JavaScript
19 lines
414 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const assert = require('assert');
|
|
|
|
const server = http.createServer(common.mustCall((req, res) => {
|
|
res.end('ok');
|
|
}));
|
|
server.listen(common.PORT, () => {
|
|
http.get({
|
|
port: common.PORT,
|
|
headers: {'Test': 'Düsseldorf'}
|
|
}, common.mustCall((res) => {
|
|
assert.equal(res.statusCode, 200);
|
|
server.close();
|
|
}));
|
|
});
|