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.