테스트 오류 수정
This commit is contained in:
@@ -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");
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user