(stream: ReadableStream<Uint8Array>)
| 7 | const fixture = `${import.meta.dirname}/fixtures/text.txt` |
| 8 | |
| 9 | const readStream = (stream: ReadableStream<Uint8Array>) => Effect.promise(() => new globalThis.Response(stream).text()) |
| 10 | |
| 11 | const readBody = (body: HttpBody.HttpBody) => { |
| 12 | assert.strictEqual(body._tag, "Raw") |
no test coverage detected