(
events: ServerAnusStreamEvent[],
)
| 79 | }); |
| 80 | |
| 81 | async function* createStreamFromEvents( |
| 82 | events: ServerAnusStreamEvent[], |
| 83 | ): AsyncGenerator<ServerAnusStreamEvent> { |
| 84 | for (const event of events) { |
| 85 | yield event; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | it('should process input and write text output', async () => { |
| 90 | const events: ServerAnusStreamEvent[] = [ |
no outgoing calls
no test coverage detected