(path: string)
| 111 | }; |
| 112 | |
| 113 | const removeFixture = (path: string): Effect.Effect<void> => |
| 114 | Effect.promise(() => ssh(`rm -rf '${path}'`).then(() => undefined)).pipe(Effect.ignore); |
| 115 | |
| 116 | const shellQuote = (value: string): string => `'${value.replaceAll("'", "'\\''")}'`; |
| 117 |
no test coverage detected