-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.test.js
33 lines (25 loc) · 1.08 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { renderHook } from '@testing-library/react-hooks'
import useTokenPagination from './'
jest.mock('./controlled', () => jest.fn(() => 'controlled'))
jest.mock('./uncontrolled', () => jest.fn(() => 'uncontrolled'))
import controlled from './controlled'
import uncontrolled from './uncontrolled'
describe('useTokenPagination', () => {
it('returns controlled when a pageNumber is provided', async () => {
const { result } = renderHook(() => useTokenPagination(1))
expect(result.current).toBe('controlled')
expect(controlled).toHaveBeenCalledWith(1, undefined)
})
it('returns uncontrolled when an object is provided', async () => {
const arg = {}
const { result } = renderHook(() => useTokenPagination(arg))
expect(result.current).toBe('uncontrolled')
expect(uncontrolled).toHaveBeenCalledWith(arg, undefined)
})
it('throws when an unknown input type is provided', async () => {
const { result } = renderHook(() => useTokenPagination('wrong'))
expect(() => result.current).toThrow(
/Unsupported options wrong of type string/
)
})
})