(port: number)
| 28 | /** Container/volume names — derived identically by the globalsetup (boot, |
| 29 | * teardown) and the target (restart), which run in different processes. */ |
| 30 | export const selfhostDockerContainerName = (port: number): string => |
| 31 | `executor-e2e-selfhost-docker-${port}`; |
| 32 | export const selfhostDockerVolumeName = (port: number): string => |
| 33 | `executor-e2e-selfhost-docker-data-${port}`; |
| 34 |
no outgoing calls
no test coverage detected