()
| 42 | } |
| 43 | |
| 44 | const guestOs = (): GuestOs => { |
| 45 | const os = process.env.E2E_VM_OS; |
| 46 | if (os === "macos" || os === "linux" || os === "windows") return os; |
| 47 | throw new Error(`Unsupported E2E_VM_OS: ${os ?? "<unset>"}`); |
| 48 | }; |
| 49 | |
| 50 | const sshInvocation = (command: string): { command: string; args: ReadonlyArray<string> } => { |
| 51 | const host = process.env.E2E_CLI_VM_HOST; |
no outgoing calls
no test coverage detected