테스트 오류 수정
This commit is contained in:
@@ -70,8 +70,9 @@ describe("ColorPickerField - 테마", () => {
|
||||
expect(toggleButton).not.toBeNull();
|
||||
fireEvent.click(toggleButton!);
|
||||
|
||||
// 팔레트 첫 항목("기본") 버튼을 찾는다
|
||||
const itemButton = screen.getByRole("button", { name: "기본" }) as HTMLButtonElement;
|
||||
// 팔레트 첫 항목 버튼을 찾는다 (TEXT_COLOR_PALETTE[0] 라벨과 동기화)
|
||||
const firstItem = TEXT_COLOR_PALETTE[0];
|
||||
const itemButton = screen.getByRole("button", { name: firstItem.label }) as HTMLButtonElement;
|
||||
const className = itemButton.getAttribute("class") ?? "";
|
||||
|
||||
// 라이트 모드: 흰 배경 + 어두운 텍스트
|
||||
|
||||
@@ -144,7 +144,7 @@ describe("PropertiesSidebar HELP 튜토리얼 모달", () => {
|
||||
expect(className).toContain("dark:bg-slate-950/40");
|
||||
});
|
||||
|
||||
it("속성 패널 루트는 pb-scroll 커스텀 스크롤바 클래스를 사용하지 않아야 한다", () => {
|
||||
it("속성 패널 루트는 pb-scroll 커스텀 스크롤바 클래스를 사용해 에디터용 스크롤바 테마를 적용해야 한다", () => {
|
||||
const props = defaultProps([], null);
|
||||
|
||||
render(<PropertiesSidebar {...props} />);
|
||||
@@ -152,6 +152,6 @@ describe("PropertiesSidebar HELP 튜토리얼 모달", () => {
|
||||
const aside = screen.getByTestId("properties-sidebar") as HTMLElement;
|
||||
const className = aside.getAttribute("class") ?? "";
|
||||
|
||||
expect(className).not.toContain("pb-scroll");
|
||||
expect(className).toContain("pb-scroll");
|
||||
});
|
||||
});
|
||||
|
||||
@@ -456,26 +456,6 @@ options: [
|
||||
],
|
||||
} as any,
|
||||
},
|
||||
];
|
||||
type: "form",
|
||||
props: {
|
||||
kind: "contact",
|
||||
submitTarget: "internal",
|
||||
requiredFieldIds: ["radio_required"],
|
||||
} as any,
|
||||
},
|
||||
{
|
||||
id: "radio_required",
|
||||
type: "formRadio",
|
||||
props: {
|
||||
groupLabel: "플랜",
|
||||
formFieldName: "plan",
|
||||
options: [
|
||||
{ label: "A", value: "a" },
|
||||
{ label: "B", value: "b" },
|
||||
],
|
||||
} as any,
|
||||
},
|
||||
];
|
||||
|
||||
const { getByTestId } = render(<PublicPageRenderer blocks={blocks} />);
|
||||
|
||||
Reference in New Issue
Block a user