1
0
forked from baron/baron-sso

adminfront/devfront E2E 및 lint 실패 수정

This commit is contained in:
2026-06-10 15:59:33 +09:00
parent b591184194
commit 01bde0925d
4 changed files with 25 additions and 4 deletions

View File

@@ -49,7 +49,12 @@ test.describe("DevFront developer request and management", () => {
await page.locator("#reason").fill("Need to test OIDC integration");
// Submit
await page.getByRole("button", { name: "신청하기", exact: true }).click();
const submitBtn = page.getByRole("button", {
name: "신청하기",
exact: true,
});
await submitBtn.scrollIntoViewIfNeeded();
await submitBtn.click();
// Verify Status - Look for "Pending" or "대기" anywhere
await expect(page.locator("body")).toContainText(/대기|Pending/);