UNPKG

@wojtekmaj/react-hooks

Version:

A collection of React Hooks.

22 lines (15 loc) 662 B
import { describe, expect, it } from 'vitest'; import { renderHook } from '@testing-library/react'; import useScrollTop from './useScrollTop.js'; const itIfWindowDefined = it.runIf(typeof window !== 'undefined'); const itIfWindowUndefined = it.runIf(typeof window === 'undefined'); describe('useScrollTop()', () => { itIfWindowDefined('should return current scroll top position properly', () => { const { result } = renderHook(() => useScrollTop()); expect(result.current).toBe(0); }); itIfWindowUndefined('should return null', () => { const { result } = renderHook(() => useScrollTop()); expect(result.current).toBe(null); }); });