(output)
| 28 | status: 1, |
| 29 | signal: null, |
| 30 | stdout(output) { |
| 31 | assertProbeJson(output, { |
| 32 | v: 2, |
| 33 | probes, |
| 34 | results: [{ |
| 35 | probe: 0, |
| 36 | event: 'hit', |
| 37 | hit: 1, |
| 38 | location, |
| 39 | error: { message: 'Probe evaluation did not complete' }, |
| 40 | }, { |
| 41 | event: 'error', |
| 42 | pending: [1], |
| 43 | error: { |
| 44 | code: 'probe_failure', |
| 45 | message: |
| 46 | `Probe session timed out before probes: ${fixture}:11. ` + |
| 47 | 'The probe expression may be slow, hanging, or interfering ' + |
| 48 | 'with the inspector connection. Try increasing `--timeout`; ' + |
| 49 | 'if the failure persists, review the probe expressions.', |
| 50 | probe: 0, |
| 51 | stderr: marker, |
| 52 | details: { lastCdpMethod: 'Debugger.evaluateOnCallFrame' }, |
| 53 | }, |
| 54 | }], |
| 55 | }); |
| 56 | }, |
| 57 | trim: true, |
| 58 | }); |
nothing calls this directly
no test coverage detected
searching dependent graphs…