1import * as _ from 'lodash-es'2import { getAppCfg, type AppCfg} from '../../deployF/k8sF/ctxF/appCfgCtxF.mts'4export const getAnyHostname = (configH: Pick<AppCfg, 'wcHostname' | 'nonWcHostname'>) => {5 return configH.wcHostname || configH.nonWcHostname6}8export const getTestAgainstHn = () => {10 return appCfg.testAgainstHn || getAnyHostname(appCfg)11}