1
0
forked from baron/baron-sso

5b345fcf 기준 병합 code-check 오류 수정

This commit is contained in:
2026-05-29 17:30:46 +09:00
parent 420f2429c3
commit cadb0631fd
18 changed files with 280 additions and 158 deletions

View File

@@ -90,7 +90,9 @@ test("clients page shows recent RP changes", async ({ page }) => {
});
await page.goto("/clients");
await expect(page.getByRole("heading", { name: "최근 변경된 앱" })).toBeVisible();
await expect(
page.getByRole("heading", { name: "최근 변경된 앱" }),
).toBeVisible();
await expect(page.getByText("클라이언트 시크릿 재발급")).toBeVisible();
await expect(page.getByText("관계 추가")).toBeVisible();
await expect(
@@ -141,7 +143,9 @@ test("clients page shows user-delete relation cleanup in recent changes", async
});
await page.goto("/clients");
await expect(page.getByRole("heading", { name: "최근 변경된 앱" })).toBeVisible();
await expect(
page.getByRole("heading", { name: "최근 변경된 앱" }),
).toBeVisible();
await expect(
page.getByRole("link", { name: "Cleanup RP", exact: true }),
).toBeVisible();
@@ -153,7 +157,9 @@ test("clients page shows user-delete relation cleanup in recent changes", async
).toBeVisible();
});
test("clients page expands recent changes with more button", async ({ page }) => {
test("clients page expands recent changes with more button", async ({
page,
}) => {
await seedAuth(page, "super_admin");
const clients = Array.from({ length: 6 }, (_, index) =>
makeClient(`client-${index + 1}`, {
@@ -185,7 +191,9 @@ test("clients page expands recent changes with more button", async ({ page }) =>
});
await page.goto("/clients");
await expect(page.getByRole("heading", { name: "최근 변경된 앱" })).toBeVisible();
await expect(
page.getByRole("heading", { name: "최근 변경된 앱" }),
).toBeVisible();
await expect(
page.getByRole("link", { name: "Recent App 1", exact: true }),
).toBeVisible();