From b488cc22bf9b69d0d86f7a1eab3379c2e7446518 Mon Sep 17 00:00:00 2001 From: hided62 Date: Mon, 17 Aug 2026 11:28:35 +0000 Subject: [PATCH] =?UTF-8?q?test:=20=EB=A1=9C=EB=B9=84=20=EC=88=98=EB=8F=99?= =?UTF-8?q?=20=EC=9E=AC=EC=8B=9C=EB=8F=84=20=EA=B2=80=EC=A6=9D=EC=9D=98=20?= =?UTF-8?q?=EC=9E=90=EB=8F=99=20=EC=84=B1=EA=B3=B5=20=EA=B2=BD=EC=9F=81=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 스크린샷과 접근성 측정 중 예약 재시도가 성공해 버튼이 사라지는 경합을 막고, 수동 재시도 시나리오를 결정적으로 유지한다. --- app/gateway-frontend/e2e/lobby-game-auth.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/gateway-frontend/e2e/lobby-game-auth.spec.ts b/app/gateway-frontend/e2e/lobby-game-auth.spec.ts index f9c12608..d0e50bf9 100644 --- a/app/gateway-frontend/e2e/lobby-game-auth.spec.ts +++ b/app/gateway-frontend/e2e/lobby-game-auth.spec.ts @@ -283,7 +283,8 @@ test('automatically recovers profile details after a transient update outage', a }); test('offers a keyboard-accessible immediate retry without mobile overflow', async ({ page }, testInfo) => { - await installFixture(page, { lobbyBundleFailures: 1 }); + // Keep the scheduled retry in the error state so it cannot race the manual retry after the screenshot. + await installFixture(page, { lobbyBundleFailures: 2 }); await page.setViewportSize({ width: 390, height: 844 }); await page.goto('lobby');