(arr1: string[], arr2: string[])
| 126 | } |
| 127 | |
| 128 | function haveCommonEntries(arr1: string[], arr2: string[]) { |
| 129 | return arr1.every(item => arr2.includes(item)); |
| 130 | } |
| 131 | |
| 132 | // Act |
| 133 | await shellExec(`docker pull ${baseImage}`); // pull base image so we can inspect it later |