()
| 30 | type GuestOs = "macos" | "linux" | "windows"; |
| 31 | |
| 32 | const guestOs = (): GuestOs => { |
| 33 | const os = process.env.E2E_VM_OS; |
| 34 | if (os === "macos" || os === "linux" || os === "windows") return os; |
| 35 | throw new Error(`Unsupported E2E_VM_OS: ${os ?? "<unset>"}`); |
| 36 | }; |
| 37 | |
| 38 | const sshInvocation = (command: string): { command: string; args: ReadonlyArray<string> } => { |
| 39 | const host = process.env.E2E_CLI_VM_HOST; |
no outgoing calls
no test coverage detected