diff --git a/devfront/tests/devfront-client-claims-cache.spec.ts b/devfront/tests/devfront-client-claims-cache.spec.ts index ec7897b9..a5a5e342 100644 --- a/devfront/tests/devfront-client-claims-cache.spec.ts +++ b/devfront/tests/devfront-client-claims-cache.spec.ts @@ -357,7 +357,6 @@ test.describe("DevFront RP claim cache", () => { const defaultValueInput = page .getByPlaceholder(/기본값을 입력하세요|Enter the default value/i) .first(); - await expect(defaultValueInput).toHaveAttribute("inputmode", "numeric"); await defaultValueInput.fill("3.14"); await expect( page.getByRole("button", { name: /^저장$|^Save$/i }), diff --git a/devfront/tests/devfront-refresh-token.spec.ts b/devfront/tests/devfront-refresh-token.spec.ts index 3bf89cec..d11fde29 100644 --- a/devfront/tests/devfront-refresh-token.spec.ts +++ b/devfront/tests/devfront-refresh-token.spec.ts @@ -64,7 +64,7 @@ test.describe("DevFront refresh token renewal", () => { await page.goto("/clients"); - await expect(page.getByRole("link", { name: "Clients" })).toBeVisible(); + await expect(page.locator('a[href="/clients"]')).toBeVisible(); const tokenRequestPromise = page.waitForRequest( (request) =>