4// Non-destructive healthcheck-only runtests for prod codeserv instances 5export const runCodeservRuntests = async ({codeservHostname, ep, password = undefined}) => { 9// Throwaway tests with optional delete/delpvcs (destructive when --suite=recreate) 10export const runThrowawayCsTests = async ({syncWithAction, cluster_name, codeservName, gitsshName, codeservHostname, ep, setupFn, includeCleanup = true, password}) => 14 pvcNames: [gitsshName, codeservName], 15 suiteName: 'codeserv-throwaway', 20 verifyFn: () => runCodeservHealthcheck({hostname: codeservHostname, password}).then(r => ({passed: r.passed, msg: r.passed ? 'healthcheck passed' : 'healthcheck failed'})),