(binaries: string[])
| 71 | } |
| 72 | |
| 73 | export function allEngineEnvVarsSet(binaries: string[]): boolean { |
| 74 | for (const binaryType of binaries) { |
| 75 | if (!getBinaryEnvVarPath(binaryType as BinaryType)) { |
| 76 | return false |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | return true |
| 81 | } |
no test coverage detected