(output)
| 21 | 'probe-max-hit.js', |
| 22 | ], { cwd }, { |
| 23 | stdout(output) { |
| 24 | assertProbeJson(output, { |
| 25 | v: 2, |
| 26 | probes: [{ |
| 27 | expr: 'index', |
| 28 | target: { suffix: 'probe-max-hit.js', line: 5 }, |
| 29 | maxHit: 10, |
| 30 | }], |
| 31 | results: [ |
| 32 | { |
| 33 | probe: 0, |
| 34 | event: 'hit', |
| 35 | hit: 1, |
| 36 | location: { url: probeUrl, line: 5, column: 3 }, |
| 37 | result: { type: 'number', value: 0, description: '0' }, |
| 38 | }, |
| 39 | { |
| 40 | probe: 0, |
| 41 | event: 'hit', |
| 42 | hit: 2, |
| 43 | location: { url: probeUrl, line: 5, column: 3 }, |
| 44 | result: { type: 'number', value: 1, description: '1' }, |
| 45 | }, |
| 46 | { |
| 47 | probe: 0, |
| 48 | event: 'hit', |
| 49 | hit: 3, |
| 50 | location: { url: probeUrl, line: 5, column: 3 }, |
| 51 | result: { type: 'number', value: 2, description: '2' }, |
| 52 | }, |
| 53 | { event: 'completed' }, |
| 54 | ], |
| 55 | }); |
| 56 | }, |
| 57 | trim: true, |
| 58 | }); |
nothing calls this directly
no test coverage detected
searching dependent graphs…