()
| 409 | }; |
| 410 | |
| 411 | const getExecStream = () => { |
| 412 | execPromise ??= this.exec(writeCommand, { |
| 413 | cwd: this.getBasePath(), |
| 414 | timeout: 300, |
| 415 | abortSignal: writeAbortController.signal, |
| 416 | }); |
| 417 | return execPromise; |
| 418 | }; |
| 419 | |
| 420 | return new WritableStream<Uint8Array>({ |
| 421 | write: async (chunk: Uint8Array) => { |
no test coverage detected