(value: Uint8Array)
| 20 | import { StreamWriter } from '@/lib/copilot/request/session/writer' |
| 21 | |
| 22 | function decodeChunk(value: Uint8Array): string { |
| 23 | return new TextDecoder().decode(value) |
| 24 | } |
| 25 | |
| 26 | describe('StreamWriter', () => { |
| 27 | beforeEach(() => { |