( self: Effect.Effect<A, E, FileSystem.FileSystem | Path.Path> )
| 7 | import * as Effect from "effect/Effect" |
| 8 | |
| 9 | const runEffect = <E, A>( |
| 10 | self: Effect.Effect<A, E, FileSystem.FileSystem | Path.Path> |
| 11 | ): Promise<A> => Effect.provide(self, NodeContext.layer).pipe(Effect.runPromise) |
| 12 | |
| 13 | describe("ConfigFile", () => { |
| 14 | it("loads json files", () => |