| 5 | type ReplyCallback = (config: { data: string }) => [number, unknown]; |
| 6 | |
| 7 | interface MockEntry { |
| 8 | pattern: string | RegExp; |
| 9 | reply: [number, unknown] | ReplyCallback; |
| 10 | } |
| 11 | |
| 12 | export class HttpMock { |
| 13 | private getMocks: MockEntry[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected