()
| 44 | |
| 45 | // Get the response as text |
| 46 | const text: () => Promise<string> = async () => { |
| 47 | const chunks = await done; |
| 48 | return buffersToString(chunks); |
| 49 | }; |
| 50 | |
| 51 | return { req, res, done, text }; |
| 52 | } |
no test coverage detected
searching dependent graphs…