diff --git a/adminfront/tests/auth.spec.ts b/adminfront/tests/auth.spec.ts index 632ef2f0..30222f8e 100644 --- a/adminfront/tests/auth.spec.ts +++ b/adminfront/tests/auth.spec.ts @@ -126,7 +126,7 @@ test.describe("Authentication", () => { await page.goto("/"); await expect(page.getByRole("link", { name: "조직도" })).toHaveAttribute( "href", - "http://localhost:5175/login?auto=1&returnTo=%2Fchart%3FincludeInternal%3Dtrue", + /\/login\?auto=1&returnTo=%2Fchart%3FincludeInternal%3Dtrue$/, ); }); diff --git a/adminfront/tests/tenants.spec.ts b/adminfront/tests/tenants.spec.ts index 134d7049..054398e8 100644 --- a/adminfront/tests/tenants.spec.ts +++ b/adminfront/tests/tenants.spec.ts @@ -608,7 +608,7 @@ test.describe("Tenants Management", () => { await page.getByRole("button", { name: "다른 테넌트 선택" }).click(); await expect(page.getByRole("dialog")).toBeVisible(); - await page.getByPlaceholder("이름 또는 슬러그, ID 검색").fill("outside"); + await page.getByPlaceholder("테넌트 이름 또는 슬러그 검색").fill("outside"); await page.getByRole("button", { name: /외부회사/ }).click(); await expect(page.getByRole("button", { name: /외부회사/ })).toHaveCount(0);