forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest-debugger-probe-late-resolution.js
More file actions
52 lines (48 loc) · 1.57 KB
/
Copy pathtest-debugger-probe-late-resolution.js
File metadata and controls
52 lines (48 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Tests that probing scripts loaded mid-session via require(esm) and import(cjs)
// still resolves and hits correctly.
'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');
const esmUrl = fixtures.fileURL('debugger', 'probe-late-target.mjs').href;
const cjsUrl = fixtures.fileURL('debugger', 'probe-late-target.cjs').href;
spawnSyncAndAssert(process.execPath, [
'inspect',
'--json',
'--probe', 'probe-late-target.mjs:3',
'--expr', 'value',
'--probe', 'probe-late-target.cjs:5',
'--expr', 'value',
'probe-late-entry.js',
], { cwd, env: { ...process.env, NODE_DEBUG: 'inspect_probe' } }, {
stdout(output) {
assertProbeJson(output, {
v: 2,
probes: [
{ expr: 'value', target: { suffix: 'probe-late-target.mjs', line: 3 } },
{ expr: 'value', target: { suffix: 'probe-late-target.cjs', line: 5 } },
],
results: [
{
probe: 1,
event: 'hit',
hit: 1,
location: { url: cjsUrl, line: 5, column: 3 },
result: { type: 'number', value: 3, description: '3' },
},
{
probe: 0,
event: 'hit',
hit: 1,
location: { url: esmUrl, line: 3, column: 3 },
result: { type: 'number', value: 5, description: '5' },
},
{ event: 'completed' },
],
});
},
trim: true,
});