()
| 69 | }; |
| 70 | |
| 71 | const executorPath = (): string => { |
| 72 | const dir = process.env.E2E_CLI_BIN_DIR ?? (guestOs() === "windows" ? "C:/ed" : "~/ed"); |
| 73 | return guestOs() === "windows" ? `${dir}/executor.exe` : `${dir}/executor`; |
| 74 | }; |
| 75 | |
| 76 | const healthStatusCommand = (): string => |
| 77 | guestOs() === "windows" |
no test coverage detected