(self: Effect.Effect<A, E, FileSystem.FileSystem>)
| 7 | import * as fc from "effect/FastCheck" |
| 8 | |
| 9 | const runEffect = <E, A>(self: Effect.Effect<A, E, FileSystem.FileSystem>): Promise<A> => |
| 10 | Effect.provide(self, NodeFileSystem.layer).pipe(Effect.runPromise) |
| 11 | |
| 12 | describe("Primitive", () => { |
| 13 | describe("Bool", () => { |