1
0
forked from baron/baron-sso

chore(adminfront): fix Biome lint error in user E2E test

This commit is contained in:
2026-04-03 15:00:57 +09:00
parent 94520db699
commit a65f9afc69

View File

@@ -68,7 +68,16 @@ test.describe("User Management", () => {
id: "t-1", id: "t-1",
slug: "test-tenant", slug: "test-tenant",
name: "Test Tenant", name: "Test Tenant",
config: { userSchema: [{key: "loginId", label: "Login ID", type: "text", isLoginId: true}] }, config: {
userSchema: [
{
key: "loginId",
label: "Login ID",
type: "text",
isLoginId: true,
},
],
},
}, },
], ],
total: 1, total: 1,
@@ -84,7 +93,16 @@ test.describe("User Management", () => {
id: "t-1", id: "t-1",
slug: "test-tenant", slug: "test-tenant",
name: "Test Tenant", name: "Test Tenant",
config: { userSchema: [{key: "loginId", label: "Login ID", type: "text", isLoginId: true}] }, config: {
userSchema: [
{
key: "loginId",
label: "Login ID",
type: "text",
isLoginId: true,
},
],
},
}, },
}); });
} }
@@ -151,7 +169,7 @@ test.describe("User Management", () => {
console.log("PUT /admin/users/u-1 payload:", postData); console.log("PUT /admin/users/u-1 payload:", postData);
// Force 409 error for this specific conflict string // Force 409 error for this specific conflict string
if (postData && postData.includes("johndoe_conflict")) { if (postData?.includes("johndoe_conflict")) {
return route.fulfill({ return route.fulfill({
status: 409, status: 409,
json: { json: {
@@ -204,7 +222,9 @@ test.describe("User Management", () => {
.click(); .click();
// Wait for the form to load with the existing login ID // Wait for the form to load with the existing login ID
const loginIdInput = page.locator('input[name*="metadata"][name*="loginId"]'); const loginIdInput = page.locator(
'input[name*="metadata"][name*="loginId"]',
);
await expect(loginIdInput).toBeVisible(); await expect(loginIdInput).toBeVisible();
await expect(loginIdInput).toHaveValue("johndoe"); await expect(loginIdInput).toHaveValue("johndoe");
@@ -240,7 +260,9 @@ test.describe("User Management", () => {
.getByRole("tab", { name: /테넌트 프로필|Tenants|Tenant Profile/i }) .getByRole("tab", { name: /테넌트 프로필|Tenants|Tenant Profile/i })
.click(); .click();
const loginIdInput = page.locator('input[name*="metadata"][name*="loginId"]'); const loginIdInput = page.locator(
'input[name*="metadata"][name*="loginId"]',
);
await expect(loginIdInput).toBeVisible(); await expect(loginIdInput).toBeVisible();
await expect(loginIdInput).toHaveValue("johndoe"); await expect(loginIdInput).toHaveValue("johndoe");
@@ -252,7 +274,7 @@ test.describe("User Management", () => {
// Check for the specific error // Check for the specific error
await expect( await expect(
page.getByText(/이미 존재하는 로그인 ID 입니다/i).first() page.getByText(/이미 존재하는 로그인 ID 입니다/i).first(),
).toBeVisible(); ).toBeVisible();
}); });