You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{renderHook}from'@testing-library/react-hooks';importmatchMediafrom'@/common/testUtils';import{useMatchMedia}from'./../useMatchMedia';describe('useMatchMedia',()=>{it('returns boolean',()=>{const{ result }=renderHook(()=>useMatchMedia('(max-width: 575px)'));expect(result.current).toBe(expect.any(Boolean));});});
I have this test file:
with this hook
and have this error
Thanks.
The text was updated successfully, but these errors were encountered: