(snapshot: ResponseSnapshot)
| 62 | ) |
| 63 | |
| 64 | const decodeResponseBody = (snapshot: ResponseSnapshot) => |
| 65 | snapshot.bodyEncoding === "base64" ? Buffer.from(snapshot.body, "base64") : snapshot.body |
| 66 | |
| 67 | const responseFromSnapshot = (request: HttpClientRequest.HttpClientRequest, snapshot: ResponseSnapshot) => |
| 68 | HttpClientResponse.fromWeb( |
no test coverage detected