(controller)
| 1352 | const hostedFetch = makeHostedFetch({ fetch: underlying, resolveHostname: publicResolver }); |
| 1353 | const stream = new ReadableStream<Uint8Array>({ |
| 1354 | start(controller) { |
| 1355 | controller.enqueue(new TextEncoder().encode("hello-streamed-body")); |
| 1356 | controller.close(); |
| 1357 | }, |
| 1358 | }); |
| 1359 | |
| 1360 | await expect( |