Add more log points in the probe mode and enable the debuglog int the probe mode tests. Signed-off-by: Joyee Cheung <joyeec9h3@gmail.com> PR-URL: https://github.com/nodejs/node/pull/63663 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
33 lines
851 B
JavaScript
33 lines
851 B
JavaScript
// This tests that probe sessions report unresolved breakpoints as misses.
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
const { spawnSyncAndAssert } = require('../common/child_process');
|
|
const { assertProbeJson } = require('../common/debugger-probe');
|
|
const cwd = fixtures.path('debugger');
|
|
|
|
spawnSyncAndAssert(process.execPath, [
|
|
'inspect',
|
|
'--json',
|
|
'--probe', 'probe-miss.js:99',
|
|
'--expr', '42',
|
|
'probe-miss.js',
|
|
], { cwd, env: { ...process.env, NODE_DEBUG: 'inspect_probe' } }, {
|
|
stdout(output) {
|
|
assertProbeJson(output, {
|
|
v: 2,
|
|
probes: [{
|
|
expr: '42',
|
|
target: { suffix: 'probe-miss.js', line: 99 },
|
|
}],
|
|
results: [{
|
|
event: 'miss',
|
|
pending: [0],
|
|
}],
|
|
});
|
|
},
|
|
trim: true,
|
|
});
|