| 447 | describe('ToStreamable protocol in async context', () => { |
| 448 | it('should handle toStreamable when toAsyncStreamable not present [FROM-023]', async () => { |
| 449 | class SyncOnly { |
| 450 | [toStreamable]() { |
| 451 | return 'sync-only-data'; |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | async function* source() { |
| 456 | yield new SyncOnly(); |
nothing calls this directly
no outgoing calls
no test coverage detected