Close scratch iteration 008 and enforce full surface audits

This commit is contained in:
master
2026-03-13 11:00:12 +02:00
parent fe35801cc5
commit c9a30331ce
11 changed files with 534 additions and 32 deletions

View File

@@ -259,6 +259,14 @@ test('legacy promotions create alias lands on the canonical wizard and submits a
await page.locator('#target-env').selectOption('env-production');
await expect(page.getByRole('heading', { name: 'Gate Preview' })).toBeVisible();
await expect(page.getByText('All gates passed')).toBeVisible();
await Promise.all([
page.waitForResponse((response) =>
response.request().method() === 'GET' &&
response.url().includes('/api/v1/release-orchestrator/releases/rel-001/promotion-preview'),
),
page.getByRole('button', { name: 'Refresh Gate Preview' }).click(),
]);
await expect(page.getByText('All gates passed')).toBeVisible();
await page.getByRole('button', { name: 'Next ->' }).click();
await expect(page.getByRole('heading', { name: 'Approval Context' })).toBeVisible();