diff --git a/webview-ui/src/components/settings/__tests__/ApiOptions.provider-filtering.spec.tsx b/webview-ui/src/components/settings/__tests__/ApiOptions.provider-filtering.spec.tsx index 62b77bb733..eb4f6fc64d 100644 --- a/webview-ui/src/components/settings/__tests__/ApiOptions.provider-filtering.spec.tsx +++ b/webview-ui/src/components/settings/__tests__/ApiOptions.provider-filtering.spec.tsx @@ -80,6 +80,21 @@ vi.mock("@src/components/ui", () => ({ CollapsibleContent: ({ children }: any) =>
{children}
, Slider: ({ children, ...props }: any) =>
{children}
, Button: ({ children, ...props }: any) => , + // Popover components (used by ModelPicker) + Popover: ({ children }: any) =>
{children}
, + PopoverTrigger: ({ children }: any) =>
{children}
, + PopoverContent: ({ children }: any) =>
{children}
, + // Command components (used by ModelPicker) + Command: ({ children }: any) =>
{children}
, + CommandInput: ({ ...props }: any) => , + CommandList: ({ children }: any) =>
{children}
, + CommandEmpty: ({ children }: any) =>
{children}
, + CommandGroup: ({ children }: any) =>
{children}
, + CommandItem: ({ children, value, onSelect }: any) => ( +
onSelect?.(value)}> + {children} +
+ ), })) describe("ApiOptions Provider Filtering", () => {