(file, args)
| 39 | } |
| 40 | |
| 41 | function execFileText(file, args) { |
| 42 | return execFileSync(file, args, { |
| 43 | encoding: 'utf8', |
| 44 | stdio: ['ignore', 'pipe', 'ignore'], |
| 45 | maxBuffer: MAX_EXEC_BUFFER, |
| 46 | windowsHide: true |
| 47 | }); |
| 48 | } |
| 49 | |
| 50 | // --- Test-only process-table injection ------------------------------------- |
| 51 | // Lets the lifecycle proxy-health tests run hermetically on a host that already |
no outgoing calls
no test coverage detected