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