(data: Record<string, unknown>)
| 91 | } |
| 92 | |
| 93 | function responseLine(data: Record<string, unknown>): string { |
| 94 | return JSON.stringify({ |
| 95 | type: 'response', |
| 96 | response: { ok: true, data }, |
| 97 | }); |
| 98 | } |
| 99 | |
| 100 | function replayTestEvent(event: RequestProgressEvent | undefined): ReplayTestProgressEvent { |
| 101 | assert.equal(event?.type, 'replay-test'); |
no outgoing calls
no test coverage detected
searching dependent graphs…