1
0
forked from baron/baron-sso

code-check 오류 수정

This commit is contained in:
2026-06-05 20:37:23 +09:00
parent 87a45f0e76
commit 01cd7a0ad3
5 changed files with 25 additions and 19 deletions

View File

@@ -120,7 +120,7 @@ describe("devfront AppLayout", () => {
const container = await renderLayout();
const collapseButton = container.querySelector(
'button[aria-label="Collapse sidebar"]',
'button[aria-label="사이드바 접기"]',
) as HTMLButtonElement;
await act(async () => {
collapseButton.click();
@@ -130,7 +130,7 @@ describe("devfront AppLayout", () => {
"true",
);
expect(
container.querySelector('button[aria-label="Expand sidebar"]'),
container.querySelector('button[aria-label="사이드바 펼치기"]'),
).not.toBeNull();
});