(controller)
| 10 | const uint8array = new TextEncoder().encode(mockReadable.read()); |
| 11 | const mockStream = new ReadableStream({ |
| 12 | start(controller) { |
| 13 | controller.enqueue(uint8array); |
| 14 | controller.close(); |
| 15 | }, |
| 16 | }); |
| 17 | const mockFn = jest.fn(); |
| 18 | // @ts-ignore |
nothing calls this directly
no outgoing calls
no test coverage detected