(path: string)
| 103 | `; |
| 104 | |
| 105 | const writeFixture = async (path: string): Promise<void> => { |
| 106 | const result = await ssh(writeFixtureCommand(path)); |
| 107 | expect( |
| 108 | result.code, |
| 109 | `fixture is written into the desktop guest\nstdout:\n${result.stdout}\nstderr:\n${result.stderr}`, |
| 110 | ).toBe(0); |
| 111 | }; |
| 112 | |
| 113 | const removeFixture = (path: string): Effect.Effect<void> => |
| 114 | Effect.promise(() => ssh(`rm -rf '${path}'`).then(() => undefined)).pipe(Effect.ignore); |
no test coverage detected