mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
test(e2e): match the Internal Users search placeholder shipped by #39604
PR #39604 renamed the Internal Users search box placeholder to "Search by email or ID…" but left searchUsers.spec.ts looking for the old "Search by email…" copy, so e2e_ui_testing has been red on litellm_internal_staging since it merged. Point the locator at the shipped placeholder
This commit is contained in:
parent
ab0478f068
commit
c1a607f90f
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ test.describe("Internal Users Search", () => {
|
|||
test("narrows the table to the matching email, and restores it when cleared", async ({ page }) => {
|
||||
await goToInternalUsers(page);
|
||||
|
||||
const search = page.getByPlaceholder("Search by email…");
|
||||
const search = page.getByPlaceholder("Search by email or ID…");
|
||||
await expect(search).toBeVisible();
|
||||
|
||||
await search.fill("noteam@");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue