(output)
| 21 | 'probe.js', |
| 22 | ], { cwd, env: { ...process.env, NODE_DEBUG: 'inspect_probe' } }, { |
| 23 | stdout(output) { |
| 24 | assertProbeJson(output, { |
| 25 | v: 2, |
| 26 | probes: [{ |
| 27 | expr: 'finalValue', |
| 28 | target: { suffix: 'probe.js', line: 12 }, |
| 29 | }], |
| 30 | results: [{ |
| 31 | probe: 0, |
| 32 | event: 'hit', |
| 33 | hit: 1, |
| 34 | location: { url: probeUrl, line: 12, column: 1 }, |
| 35 | result: { type: 'number', value: 81, description: '81' }, |
| 36 | }, { |
| 37 | event: 'completed', |
| 38 | }], |
| 39 | }); |
| 40 | }, |
| 41 | trim: true, |
| 42 | }); |
nothing calls this directly
no test coverage detected