(e: Effect.Effect<R, L>, expected: L)
| 11 | } |
| 12 | |
| 13 | const expectLeft = <R, L>(e: Effect.Effect<R, L>, expected: L) => { |
| 14 | Util.deepStrictEqual(Effect.runSync(Effect.either(e)), Either.left(expected)) |
| 15 | } |
| 16 | |
| 17 | describe("do notation", () => { |
| 18 | it("Do", () => { |
no test coverage detected