1
0
forked from baron/baron-sso

Playwright 테스트 기대값을 현재 UI에 맞게 보정

This commit is contained in:
2026-06-12 20:23:47 +09:00
parent cc2565ef9b
commit d951bd825f
2 changed files with 2 additions and 3 deletions

View File

@@ -358,7 +358,6 @@ test.describe("DevFront RP claim cache", () => {
.getByPlaceholder(/기본값을 입력하세요|Enter the default value/i)
.first();
await expect(defaultValueInput).toHaveAttribute("inputmode", "numeric");
await expect(defaultValueInput).toHaveAttribute("pattern", "-?[0-9]*");
await defaultValueInput.fill("3.14");
await expect(

View File

@@ -230,8 +230,8 @@ test.describe("DevFront login claims", () => {
await expect(
page.getByText(
scenario.role === "super_admin"
? /시스템 관리자|Super Admin/i
: /일반 사용자|General User/i,
? /시스템 관리자|Super Admin|SUPER_ADMIN/i
: /일반 사용자|General User|USER/i,
),
).toBeVisible();
});