()
| 87 | } |
| 88 | |
| 89 | function checkDockerRunning() { |
| 90 | try { |
| 91 | execSync('docker info', { stdio: 'ignore' }) |
| 92 | return true |
| 93 | } catch { |
| 94 | return false |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | function getPlatform() { |
| 99 | const osPlatform = platform() |
no outgoing calls
no test coverage detected