mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
30fb4a015d
PR-URL: https://github.com/nodejs/node/pull/35086 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
30 lines
747 B
JavaScript
30 lines
747 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
// Test that example code in doc/api/inspector.md continues to work with the V8
|
|
// experimental API.
|
|
|
|
const assert = require('assert');
|
|
const inspector = require('inspector');
|
|
const session = new inspector.Session();
|
|
|
|
session.connect();
|
|
|
|
const chunks = [];
|
|
|
|
session.on('HeapProfiler.addHeapSnapshotChunk', (m) => {
|
|
chunks.push(m.params.chunk);
|
|
});
|
|
|
|
session.post('HeapProfiler.takeHeapSnapshot', null, common.mustSucceed((r) => {
|
|
assert.deepStrictEqual(r, {});
|
|
session.disconnect();
|
|
|
|
const profile = JSON.parse(chunks.join(''));
|
|
assert(profile.snapshot.meta);
|
|
assert(profile.snapshot.node_count > 0);
|
|
assert(profile.snapshot.edge_count > 0);
|
|
}));
|