( self: Effect.Effect<A, E, NodeContext.NodeContext> )
| 12 | import * as Schema from "effect/Schema" |
| 13 | |
| 14 | const runEffect = <E, A>( |
| 15 | self: Effect.Effect<A, E, NodeContext.NodeContext> |
| 16 | ): Promise<A> => Effect.provide(self, NodeContext.layer).pipe(Effect.runPromise) |
| 17 | |
| 18 | describe("Args", () => { |
| 19 | it("validates an valid argument with a default", () => |