(chunk)
| 306 | const chunks: Array<string> = [] |
| 307 | const writable = new WritableStream<Uint8Array>({ |
| 308 | write(chunk) { |
| 309 | chunks.push(decoder.decode(chunk)) |
| 310 | } |
| 311 | }) |
| 312 | |
| 313 | const socket = yield* Socket.fromTransformStream( |
no test coverage detected