()
| 211 | const controller = new AbortController(); |
| 212 | |
| 213 | async function* failingSource() { |
| 214 | yield 1; |
| 215 | yield 2; |
| 216 | throw new Error("source failed"); |
| 217 | } |
| 218 | |
| 219 | const collected: PromiseSettledResult<number>[] = []; |
| 220 |
no test coverage detected