mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Merge pull request #17446 from BerriAI/litellm_ui_e2e_cicd_fix
[Fix] Change e2e test to look for Virtual Keys instead of API Keys
This commit is contained in:
commit
ee63105e16
1 changed files with 4 additions and 4 deletions
|
|
@ -34,10 +34,10 @@ test("view internal user page", async ({ page }) => {
|
|||
// The UI renders badges in each row - we just verify the column structure exists
|
||||
const rowCount = await page.locator("tbody tr").count();
|
||||
expect(rowCount).toBeGreaterThan(0);
|
||||
|
||||
// Verify table headers are present (including API Keys column)
|
||||
const apiKeysHeader = page.locator("th", { hasText: "API Keys" });
|
||||
await expect(apiKeysHeader).toBeVisible();
|
||||
|
||||
// Verify table headers are present (including Virtual Keys column)
|
||||
const virtualKeysHeader = page.locator("th", { hasText: "Virtual Keys" });
|
||||
await expect(virtualKeysHeader).toBeVisible();
|
||||
|
||||
// test pagination
|
||||
// Wait for pagination controls to be visible
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue