How to write test case for document.body.classList.add/remove in React useEffect with jest & enzyme

54 Views Asked by At

How do I write unit test for following?

 useEffect(() => {
    document.body.classList.add("overflow_hidden");
    return () => {
      document.body.classList.remove("overflow_hidden");
    }
  }, []);
0

There are 0 best solutions below