모바일 메뉴와 주요 화면 UX 개선 및 시각 검수

This commit is contained in:
Yun Chan 2026-09-12 17:57:59 +09:00
parent 89b5093ec7
commit e8b770e4d9
50 changed files with 3189 additions and 457 deletions

View file

@ -478,4 +478,35 @@ export async function routeEmptySessionReview(
body: JSON.stringify(emptyReviewResponse(sessionId)),
});
});
await page.route(`**/api/sessions/${sessionId}/alliance-pulses`, async (route) => {
await route.fulfill({
status: 200,
contentType: "application/json",
body: JSON.stringify({ items: [] }),
});
});
await page.route(
new RegExp(`/api/sessions/${sessionId}/multimodal-alliance\\?include_derived=true$`),
async (route) => {
await route.fulfill({
status: 404,
contentType: "application/json",
body: JSON.stringify({ detail: "multimodal alliance ledger not found" }),
});
},
);
await page.route(`**/api/sessions/${sessionId}/outcome-trajectory`, async (route) => {
await route.fulfill({
status: 404,
contentType: "application/json",
body: JSON.stringify({ detail: "outcome trajectory not found" }),
});
});
await page.route(`**/api/sessions/${sessionId}/ruptures`, async (route) => {
await route.fulfill({
status: 404,
contentType: "application/json",
body: JSON.stringify({ detail: "rupture ledger not found" }),
});
});
}