| 70 | } |
| 71 | |
| 72 | interface MockState { |
| 73 | body: string |
| 74 | status: number |
| 75 | calls: Array<{ url: string; userAgent: string | null }> |
| 76 | } |
| 77 | |
| 78 | const makeMockClient = (state: Ref.Ref<MockState>) => |
| 79 | HttpClient.make((request) => |
nothing calls this directly
no outgoing calls
no test coverage detected