(file: string)
| 47 | const exists = (file: string) => FSUtil.Service.use((fs) => fs.existsSafe(file)) |
| 48 | const mkdirp = (dir: string) => FSUtil.Service.use((fs) => fs.ensureDir(dir)) |
| 49 | const rm = (file: string) => |
| 50 | FSUtil.Service.use((fs) => fs.remove(file, { recursive: true, force: true }).pipe(Effect.ignore)) |
| 51 | |
| 52 | const initialize = Effect.fn("SnapshotTest.initialize")(function* (dir: string) { |
| 53 | const unique = Math.random().toString(36).slice(2) |
no test coverage detected