(config)
| 302 | // the backends bind to `0.0.0.0`, which only accepts IPv4, but localhost can |
| 303 | // resolve to ::1 first (notably on Windows). |
| 304 | function buildLocalServiceRouteArgs(config) { |
| 305 | return buildRouteArgs( |
| 306 | getLocalServiceRoutes({ |
| 307 | ...config, |
| 308 | launchAgentServer: true, |
| 309 | launchAutomation: true, |
| 310 | }), |
| 311 | ); |
| 312 | } |
| 313 | |
| 314 | function startAgentServer(config) { |
| 315 | logService( |
no test coverage detected