(exe: string)
| 158 | }; |
| 159 | |
| 160 | const installServiceCommand = (exe: string): string => |
| 161 | guestOs() === "windows" |
| 162 | ? `& '${exe}' service install --port ${PORT}; exit $LASTEXITCODE` |
| 163 | : `${exe} service install --port ${PORT}`; |
| 164 | |
| 165 | const processAliveCommand = (pid: string): string => |
| 166 | guestOs() === "windows" |
no test coverage detected