(calls: Array<Record<string, unknown>>, method: string)
| 32 | } |
| 33 | |
| 34 | function callsByMethod(calls: Array<Record<string, unknown>>, method: string) { |
| 35 | return calls.filter(call => call.method === method) |
| 36 | } |
| 37 | |
| 38 | function makeDelta(content: string, id?: string): string { |
| 39 | return JSON.stringify({ |
no outgoing calls
no test coverage detected