()
| 148 | |
| 149 | Deno.test("pooledMapSettled() propagates source iterable error after in-flight results", async () => { |
| 150 | async function* failing() { |
| 151 | yield 1; |
| 152 | yield 2; |
| 153 | throw new Error("source failed"); |
| 154 | } |
| 155 | |
| 156 | const collected: PromiseSettledResult<number>[] = []; |
| 157 |
no outgoing calls
no test coverage detected