()
| 33 | }) |
| 34 | |
| 35 | function createWriteOnlyTransport() { |
| 36 | const writes: unknown[] = [] |
| 37 | |
| 38 | return { |
| 39 | writes, |
| 40 | transport: { |
| 41 | write: async (message: unknown) => { |
| 42 | writes.push(message) |
| 43 | }, |
| 44 | } as never, |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | describe('handleIngressMessage', () => { |
| 49 | it('routes control responses and compat-normalized control requests before SDK message handling', () => { |
no outgoing calls
no test coverage detected