(response: () => Response)
| 343 | |
| 344 | describe("error responses", () => { |
| 345 | const makeClient = (response: () => Response) => |
| 346 | HttpApiClient.makeWith(ErrorContentTypeApi, { |
| 347 | baseUrl: "http://test", |
| 348 | httpClient: clientFromResponse(response) |
| 349 | }) |
| 350 | |
| 351 | it.effect("selects schemas by normalized content type regardless of declaration order", () => |
| 352 | Effect.gen(function*() { |
no test coverage detected