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.
22 lines
523 B
22 lines
523 B
// Flags: --inspect={PORT}
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const options = {
|
|
path: '/json/protocol',
|
|
port: common.PORT,
|
|
host: common.localhostIPv4,
|
|
};
|
|
|
|
http.get(options, common.mustCall((res) => {
|
|
let body = '';
|
|
res.setEncoding('utf8');
|
|
res.on('data', (data) => body += data);
|
|
res.on('end', common.mustCall(() => {
|
|
assert(body.length > 0);
|
|
assert.deepStrictEqual(JSON.stringify(JSON.parse(body)), body);
|
|
}));
|
|
}));
|
|
|