From 455eba04f727481e1f688bc500a4f78781d0aa34 Mon Sep 17 00:00:00 2001 From: ryan-crabbe-berri Date: Tue, 9 Jun 2026 10:51:03 -0700 Subject: [PATCH] test(ui): add playground to the App Router migration smoke Append "playground" to MIGRATED_E2E_SEGMENTS so the data-driven smoke covers the migrated Playground page in both mounts, and the migrated->migrated navigation test now runs (api-reference <-> playground) instead of skipping. --- .../e2e_tests/fixtures/migratedPages.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ui/litellm-dashboard/e2e_tests/fixtures/migratedPages.ts b/ui/litellm-dashboard/e2e_tests/fixtures/migratedPages.ts index f2ba66147ea..b14c9c36577 100644 --- a/ui/litellm-dashboard/e2e_tests/fixtures/migratedPages.ts +++ b/ui/litellm-dashboard/e2e_tests/fixtures/migratedPages.ts @@ -7,10 +7,10 @@ * - server-root-path mount: SERVER_ROOT_PATH=/ npm run e2e:migration:root * * Keep this in lockstep with MIGRATED_PAGES in src/utils/migratedPages.ts. - * Pending (uncomment as each PR lands): playground, and the leaf-pages batch - * (budgets, caching, cost-tracking, guardrails, guardrails-monitor, logs, - * mcp-servers, memory, policies, projects, prompts, search-tools, skills, - * tag-management, tool-policies, transform-request, ui-theme, vector-stores, - * workflows, access-groups). + * Pending (add as each PR lands): the leaf-pages batch (budgets, caching, + * cost-tracking, guardrails, guardrails-monitor, logs, mcp-servers, memory, + * policies, projects, prompts, search-tools, skills, tag-management, + * tool-policies, transform-request, ui-theme, vector-stores, workflows, + * access-groups). */ -export const MIGRATED_E2E_SEGMENTS: string[] = ["api-reference"]; +export const MIGRATED_E2E_SEGMENTS: string[] = ["api-reference", "playground"];