(descriptor: ServiceDescriptor)
| 157 | // --------------------------------------------------------------------------- |
| 158 | |
| 159 | const serviceProgramArguments = (descriptor: ServiceDescriptor): ReadonlyArray<string> => [ |
| 160 | descriptor.executablePath, |
| 161 | "daemon", |
| 162 | "run", |
| 163 | "--foreground", |
| 164 | "--port", |
| 165 | String(descriptor.port), |
| 166 | "--hostname", |
| 167 | "127.0.0.1", |
| 168 | ]; |
| 169 | |
| 170 | const serviceEnvironment = ( |
| 171 | descriptor: ServiceDescriptor, |
no outgoing calls
no test coverage detected