회기 무발화 0턴 분리, 자기예측 락 불변식 및 TDD 회귀 검증 완료
Some checks failed
API contract / OpenAPI type drift (push) Failing after 3m27s

This commit is contained in:
Yun Chan 2026-09-08 23:28:06 +09:00
parent a479db7a5a
commit a0311c5957
100 changed files with 4884 additions and 11210 deletions

View file

@ -1117,10 +1117,10 @@ test.describe("voice cascade success path", () => {
await expect(consentDialog).toBeVisible();
if (process.env.CAPTURE_G7_CONSENT === "1") {
const desktopViewport = page.viewportSize() ?? { width: 1440, height: 900 };
await page.screenshot({ path: "test-results/g7-voice-consent-desktop.png" });
await page.screenshot({ path: testInfo.outputPath("g7-voice-consent-desktop.png") });
await page.setViewportSize({ width: 390, height: 844 });
await expect(consentDialog).toBeVisible();
await page.screenshot({ path: "test-results/g7-voice-consent-mobile.png" });
await page.screenshot({ path: testInfo.outputPath("g7-voice-consent-mobile.png") });
await page.setViewportSize(desktopViewport);
}
await expect.poll(async () => (await readVoiceUiProbe(page)).getUserMediaCalls).toBe(0);