(controller)
| 275 | const next = yield* Effect.promise(() => iterator.next()) |
| 276 | |
| 277 | assert.deepStrictEqual(first, { done: true, value: undefined }) |
| 278 | assert.deepStrictEqual(second, { done: true, value: undefined }) |
| 279 | assert.deepStrictEqual(next, { done: true, value: undefined }) |
| 280 | })) |
| 281 | |
| 282 | it.effect("toAsyncIterable - natural completion closes the scope with a successful exit", () => |
nothing calls this directly
no test coverage detected
searching dependent graphs…