(dir: string)
| 75 | const readText = (filepath: string) => Effect.promise(() => fs.readFile(filepath, "utf-8")) |
| 76 | const writeText = (filepath: string, content: string) => Effect.promise(() => fs.writeFile(filepath, content, "utf-8")) |
| 77 | const makeDir = (dir: string) => Effect.promise(() => fs.mkdir(dir, { recursive: true })) |
| 78 | |
| 79 | const expectFailure = <A, E, R>(effect: Effect.Effect<A, E, R>, message?: string) => |
| 80 | Effect.gen(function* () { |