(path: string)
| 130 | `; |
| 131 | |
| 132 | const writeFixture = async (path: string): Promise<void> => { |
| 133 | const result = await ssh( |
| 134 | guestOs() === "windows" ? windowsFixtureCommand(path) : unixFixtureCommand(path), |
| 135 | ); |
| 136 | expect( |
| 137 | result.code, |
| 138 | `fixture is written into the guest\nstdout:\n${result.stdout}\nstderr:\n${result.stderr}`, |
| 139 | ).toBe(0); |
| 140 | }; |
| 141 | |
| 142 | const removeFixture = (path: string): Effect.Effect<void> => |
| 143 | Effect.promise(() => |
no test coverage detected