1
0
forked from baron/baron-sso

코드체크 결과 README에 뱃지로 추가

This commit is contained in:
2026-05-29 17:15:13 +09:00
parent 5ddfc6c81b
commit 23cd316c23
26 changed files with 1096 additions and 350 deletions

View File

@@ -44,6 +44,23 @@ vi.mock("../../lib/i18n", () => ({
},
}));
vi.mock("../../../../common/core/components/audit", () => ({
AuditLogTable: ({
logs,
}: {
logs: Array<{ user_id: string; event_type: string }>;
}) => (
<div>
{logs.map((log) => (
<div key={`${log.user_id}-${log.event_type}`}>
<span>{log.user_id}</span>
<span>{log.event_type}</span>
</div>
))}
</div>
),
}));
const clientSummary = {
id: "client-a",
name: "Console App",