(target: string)
| 121 | }) |
| 122 | |
| 123 | const exists = (target: string) => |
| 124 | Effect.promise(() => |
| 125 | fs.stat(target).then( |
| 126 | () => true, |
| 127 | () => false, |
| 128 | ), |
| 129 | ) |
| 130 | const it = testEffect(Layer.empty) |
| 131 | |
| 132 | describe("ApplyPatchTool", () => { |
no outgoing calls
no test coverage detected