()
| 558 | } |
| 559 | |
| 560 | function getConnectionTimeoutValue() { |
| 561 | if (typeof process.env.TUNNEL_CONNECTION_TIMEOUT === "string") { |
| 562 | return parseInt(process.env.TUNNEL_CONNECTION_TIMEOUT); |
| 563 | } |
| 564 | |
| 565 | return 5000; |
| 566 | } |
| 567 | |
| 568 | async function createNgrokTunnel(hostname: string, port: number, spinner: Ora) { |
| 569 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…