From 947894419781a6711092a9d2876383161098e7db Mon Sep 17 00:00:00 2001 From: kyy Date: Fri, 5 Jun 2026 21:00:40 +0900 Subject: [PATCH] =?UTF-8?q?adminfront-tests=20=EA=B2=80=EC=83=89=20placeho?= =?UTF-8?q?lder=20=EA=B8=B0=EB=8C=80=EA=B0=92=EC=9D=84=20=ED=98=84?= =?UTF-8?q?=EC=9E=AC=20UI=20=EB=AC=B8=EA=B5=AC=EC=97=90=20=EB=A7=9E?= =?UTF-8?q?=EA=B2=8C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adminfront/tests/tenants.spec.ts | 6 +++--- adminfront/tests/users.spec.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/adminfront/tests/tenants.spec.ts b/adminfront/tests/tenants.spec.ts index f6de8aaf..6b7e8f4a 100644 --- a/adminfront/tests/tenants.spec.ts +++ b/adminfront/tests/tenants.spec.ts @@ -190,12 +190,12 @@ test.describe("Tenants Management", () => { await page.goto("/tenants"); await page - .getByPlaceholder(/테넌트 이름 또는 슬러그 검색|search/i) + .getByPlaceholder(/이름 또는 슬러그, ID 검색|search/i) .fill("team-1"); await expect(page.locator("table")).toContainText("Platform"); await page - .getByPlaceholder(/테넌트 이름 또는 슬러그 검색|search/i) + .getByPlaceholder(/이름 또는 슬러그, ID 검색|search/i) .fill(""); await page .locator("tbody tr") @@ -610,7 +610,7 @@ test.describe("Tenants Management", () => { await page.getByRole("button", { name: "다른 테넌트 선택" }).click(); await expect(page.getByRole("dialog")).toBeVisible(); - await page.getByPlaceholder("테넌트 이름 또는 슬러그 검색").fill("outside"); + await page.getByPlaceholder("이름 또는 슬러그, ID 검색").fill("outside"); await page.getByRole("button", { name: /외부회사/ }).click(); await expect(page.getByRole("button", { name: /외부회사/ })).toHaveCount(0); diff --git a/adminfront/tests/users.spec.ts b/adminfront/tests/users.spec.ts index b54ab46b..6e86b030 100644 --- a/adminfront/tests/users.spec.ts +++ b/adminfront/tests/users.spec.ts @@ -602,11 +602,11 @@ test.describe("User Management", () => { await expect(page.getByText("Load User 0")).toBeVisible(); const initialMs = performance.now() - initialStartedAt; - const searchInput = page.getByPlaceholder("이름 또는 이메일 검색..."); + const searchInput = page.getByPlaceholder("이름 또는 이메일 검색"); await searchInput.fill("Load User 19999"); const searchMs = await page.evaluate(async () => { const input = Array.from(document.querySelectorAll("input")).find( - (candidate) => candidate.placeholder === "이름 또는 이메일 검색...", + (candidate) => candidate.placeholder === "이름 또는 이메일 검색", ); if (!input) {