(instance: TestInstance | null)
| 28 | * @param instance The instance to check. |
| 29 | */ |
| 30 | export function isHostImage(instance: TestInstance | null) { |
| 31 | return typeof instance?.type === 'string' && HOST_IMAGE_NAMES.includes(instance.type); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Checks if the given element is a host Switch element. |
no outgoing calls
no test coverage detected
searching dependent graphs…