릴리스 후보 부트 진단 게이트 보정

This commit is contained in:
Yun Chan 2026-08-09 18:42:51 +09:00
parent 5221f79e3f
commit 21461ab323
5 changed files with 31 additions and 5 deletions

View file

@ -905,7 +905,10 @@ test.describe("학습자 자기주도 전체 루프 — 실제 src UI / route fi
});
test("React 부트가 실제로 비어 있으면 진단을 유지한다", async ({ page }) => {
await page.route("**/src/main.tsx", (route) => route.abort("failed"));
await page.route(
/\/(?:src\/main\.tsx|assets\/index-[^/]+\.js)(?:\?.*)?$/,
(route) => route.abort("failed"),
);
await page.goto("/learn", { waitUntil: "domcontentloaded" });
const diagnostic = page.locator("#vignette-boot-diagnostic");