mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
Fixing e2e
This commit is contained in:
parent
ac9ce43902
commit
e21bf1982c
1 changed files with 2 additions and 3 deletions
|
|
@ -39,9 +39,8 @@ test("view internal user page", async ({ page }) => {
|
|||
const rowCount = await page.locator("tbody tr").count();
|
||||
expect(rowCount).toBeGreaterThan(0);
|
||||
|
||||
const userIdHeader = page.locator("th", { hasText: "User ID" });
|
||||
page.screenshot({ path: "test-results/user_id_header.png" });
|
||||
await expect(userIdHeader).toBeVisible();
|
||||
const userIdHeader = await page.locator("th", { hasText: "User ID" });
|
||||
await expect(userIdHeader).toBeVisible({ timeout: 10000 });
|
||||
|
||||
// test pagination
|
||||
// Wait for pagination controls to be visible
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue