mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-19 10:19:07 +00:00
Add create key test
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { test, expect } from "@playwright/test";
|
||||
import { ADMIN_STORAGE_PATH } from "../../constants";
|
||||
import { Page } from "../../fixtures/pages";
|
||||
import { navigateToPage } from "../../helpers/navigation";
|
||||
|
||||
test.describe.only("Create Key", () => {
|
||||
test.use({ storageState: ADMIN_STORAGE_PATH });
|
||||
|
||||
test("Able to create a key with all team models", async ({ page }) => {
|
||||
await navigateToPage(page, Page.ApiKeys);
|
||||
await expect(page.getByRole("button", { name: "Next" })).toBeVisible();
|
||||
await page.getByRole("button", { name: "+ Create New Key" }).click();
|
||||
await page.getByTestId("base-input").click();
|
||||
await page.getByTestId("base-input").fill("e2eUITestingCreateKeyAllTeamModels");
|
||||
await page.locator(".ant-select-selection-overflow").click();
|
||||
await page.getByText("All Team Models").click();
|
||||
await page.getByRole("combobox", { name: "* Models info-circle :" }).press("Escape");
|
||||
await page.getByRole("button", { name: "Create Key" }).click();
|
||||
await expect(page.getByText("Virtual Key Created")).toBeVisible();
|
||||
await page.keyboard.press("Escape");
|
||||
await expect(page.getByText("e2eUITestingCreateKeyAllTeamModels")).toBeVisible();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user