From 72efa439dd74ec9f6135b07c99b2dc3299bc1454 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 24 Apr 2026 15:35:38 +0000 Subject: [PATCH] chore(ui): document skipped tests in BLOCKERS (batch B) Co-authored-by: yuneng-jiang --- ui/litellm-dashboard/docs/BLOCKERS.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/litellm-dashboard/docs/BLOCKERS.md b/ui/litellm-dashboard/docs/BLOCKERS.md index a57cfd11cb6..a84bac4e178 100644 --- a/ui/litellm-dashboard/docs/BLOCKERS.md +++ b/ui/litellm-dashboard/docs/BLOCKERS.md @@ -3,6 +3,12 @@ One-line entries per blocker. Format: `: ` +## Skipped tests (batch B repair) + +- `src/components/mcp_tools/MCPPermissionManagement.test.tsx: should reflect allow_all_keys when editing an existing server`: antd `Form.Item` injects an `onChange` callback, but shadcn/Radix `Switch` uses `onCheckedChange`; toggling inside the antd Form no longer updates form state. Requires rewiring the source form binding. +- `src/components/playground/chat_ui/EndpointSelector.test.tsx: should filter and show audio endpoints when user inputs 'audio'`: shadcn/Radix `Select` does not expose a typeahead filter input; the old antd-Select filter behavior cannot be replicated against the migrated component. +- `src/components/playground/compareUI/components/UnifiedSelector.test.tsx: should filter options by search input`: same — shadcn `Select` has no typeahead filter, and the migrated `UnifiedSelector` no longer renders the antd search input. + ## Deferred until owning call sites migrate - `src/components/common_components/check_openapi_schema.tsx`: tightly coupled to antd `Form.Item` API (uses `rules`, `validator`, `help`, `initialValue` props that have no direct RHF analog in one file). Only caller is `organisms/create_key_button.tsx` which still uses antd Form. Defer migration until create_key_button migrates.