From 0b48fe22c7cd4e5057563f2754b3bf6ff3dde607 Mon Sep 17 00:00:00 2001 From: kyy Date: Fri, 5 Jun 2026 21:16:11 +0900 Subject: [PATCH] =?UTF-8?q?adminfront-tests=20E2E=20=EA=B8=B0=EB=8C=80?= =?UTF-8?q?=EA=B0=92=EC=9D=84=20=ED=98=84=EC=9E=AC=20UI=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91=EC=97=90=20=EB=A7=9E=EA=B2=8C=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adminfront/tests/auth.spec.ts | 2 +- adminfront/tests/tenants.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);