diff --git a/ui/litellm-dashboard/src/components/OldTeams.test.tsx b/ui/litellm-dashboard/src/components/OldTeams.test.tsx index f0f08e3907..7d64ac9afe 100644 --- a/ui/litellm-dashboard/src/components/OldTeams.test.tsx +++ b/ui/litellm-dashboard/src/components/OldTeams.test.tsx @@ -74,9 +74,9 @@ vi.mock("./ModelSelect/ModelSelect", () => { if (onChange) { const newVal = e.target.value ? e.target.value - .split(",") - .map((s: string) => s.trim()) - .filter(Boolean) + .split(",") + .map((s: string) => s.trim()) + .filter(Boolean) : []; onChange(newVal); } @@ -836,7 +836,7 @@ describe("OldTeams - access_group_ids in team create", () => { }), ); }); - }); + }, { timeout: 30000 }); }); describe("OldTeams - models dropdown options", () => { diff --git a/ui/litellm-dashboard/src/components/organisms/create_key_button.test.tsx b/ui/litellm-dashboard/src/components/organisms/create_key_button.test.tsx index b5198e4f86..d08d0f3af1 100644 --- a/ui/litellm-dashboard/src/components/organisms/create_key_button.test.tsx +++ b/ui/litellm-dashboard/src/components/organisms/create_key_button.test.tsx @@ -118,7 +118,7 @@ describe("CreateKey", () => { expect(formValues).toHaveProperty("access_group_ids"); expect(formValues.access_group_ids).toEqual(["ag-1", "ag-2"]); }, - { timeout: 5000 }, + { timeout: 15000 }, ); - }); + }, { timeout: 30000 }); });