1
0
forked from baron/baron-sso

devfront e2e test 오류 수정

This commit is contained in:
2026-06-11 16:25:24 +09:00
parent 01bc6d9b08
commit 79845d2b6a
4 changed files with 19 additions and 14 deletions

View File

@@ -354,14 +354,12 @@ test.describe("DevFront RP claim cache", () => {
await valueTypeSelect.selectOption("number");
await expect(valueTypeSelect).toHaveValue("number");
await page
const defaultValueInput = page
.getByPlaceholder(/기본값을 입력하세요|Enter the default value/i)
.first()
.fill("3.14");
.first();
await defaultValueInput.fill("3.14");
await expect(
page.getByText(/Claim 기본값이 타입과 맞지 않습니다|does not match/i),
).toBeVisible();
await expect(defaultValueInput).toHaveAttribute("aria-invalid", "true");
await expect(
page.getByRole("button", { name: /^저장$|^Save$/i }),
).toBeDisabled();