(label: string)
| 25 | Effect.gen(function*() { |
| 26 | const ref = yield* (Ref.make<ReadonlyArray<string>>([])) |
| 27 | const event = (label: string) => Ref.update(ref, (array) => [...array, label]) |
| 28 | const channel = pipe( |
| 29 | Channel.fromEffect(event("Acquire1")), |
| 30 | Channel.ensuring(event("Release11")), |
no test coverage detected