(file: string | undefined, text: string)
| 40 | } |
| 41 | |
| 42 | const log = (file: string | undefined, text: string): void => { |
| 43 | if (file) appendFileSync(file, `${text}\n`); |
| 44 | else console.error(`[e2e:selfhost-docker] ${text}`); |
| 45 | }; |
| 46 | |
| 47 | /** |
| 48 | * Resolve the image to run: an explicit E2E_SELFHOST_DOCKER_IMAGE wins |
no test coverage detected