import React from "react"; import { Provider, useSelector } from "react-redux"; import { shouldWidgetIgnoreClicksSelector } from "./widgetSelectors"; import { renderHook, act } from "@testing-library/react-hooks"; import store from "../store"; import { useAutoHeightUIState } from "utils/hooks/autoHeightUIHooks"; describe("shouldWidgetIgnoreClicksSelector", () => { it("should return true when we are changing the auto height with limits", () => { const wrapper = ({ children }: { children: React.ReactNode }) => ( {children} ); const { result: shouldIgnore } = renderHook( () => useSelector(shouldWidgetIgnoreClicksSelector("0")), { wrapper }, ); const { result: autoHeightUIState } = renderHook( () => useAutoHeightUIState(), { wrapper }, ); act(() => { autoHeightUIState.current.setIsAutoHeightWithLimitsChanging(true); }); expect(shouldIgnore.current).toBe(true); }); });