Close scratch iteration 006 grouped readiness repairs
This commit is contained in:
@@ -696,6 +696,27 @@ function Test-FrontdoorBootstrap {
|
||||
return $true
|
||||
}
|
||||
|
||||
function Test-AuthenticatedFrontdoorReadiness {
|
||||
Write-Step 'Waiting for authenticated frontdoor route readiness'
|
||||
|
||||
Push-Location $Root
|
||||
try {
|
||||
& node 'src/Web/StellaOps.Web/scripts/live-frontdoor-authenticated-readiness.mjs'
|
||||
if ($LASTEXITCODE -eq 0) {
|
||||
Write-Ok 'Authenticated topology, notifications admin, and promotion flows are ready for first-user QA'
|
||||
return $true
|
||||
}
|
||||
}
|
||||
catch {
|
||||
}
|
||||
finally {
|
||||
Pop-Location
|
||||
}
|
||||
|
||||
Write-Fail 'Authenticated frontdoor route readiness did not converge'
|
||||
return $false
|
||||
}
|
||||
|
||||
# ─── 8. Smoke test ─────────────────────────────────────────────────────────
|
||||
|
||||
function Test-Smoke {
|
||||
@@ -755,6 +776,12 @@ function Test-Smoke {
|
||||
} else {
|
||||
$hasBlockingFailures = $true
|
||||
}
|
||||
|
||||
if (Test-AuthenticatedFrontdoorReadiness) {
|
||||
Write-Ok 'Authenticated frontdoor route readiness converged'
|
||||
} else {
|
||||
$hasBlockingFailures = $true
|
||||
}
|
||||
}
|
||||
|
||||
# Platform container health summary
|
||||
|
||||
Reference in New Issue
Block a user