(path: string)
| 140 | }; |
| 141 | |
| 142 | const removeFixture = (path: string): Effect.Effect<void> => |
| 143 | Effect.promise(() => |
| 144 | ssh( |
| 145 | guestOs() === "windows" |
| 146 | ? `Remove-Item -Recurse -Force '${path}' -ErrorAction SilentlyContinue` |
| 147 | : `rm -rf '${path}'`, |
| 148 | ).then(() => undefined), |
| 149 | ).pipe(Effect.ignore); |
| 150 | |
| 151 | const request = async <T>( |
| 152 | target: TargetShape, |
no test coverage detected