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:
mateo-berri 2026-09-03 16:57:10 -07:00
parent ab0478f068
commit c1a607f90f

View file

@ -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@");