File size: 548 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { renderHook, act } from '@testing-library/react-hooks';
import { useError } from '../src';

const setup = () => renderHook(() => useError());

beforeEach(() => {
  jest.spyOn(console, 'error').mockImplementation(() => {});
});

afterEach(() => {
  jest.clearAllMocks();
});

it('should throw an error on error dispatch', () => {
  const errorStr = 'some_error';

  try {
    const { result } = setup();

    act(() => {
      result.current(new Error(errorStr));
    });
  } catch (err) {
    expect(err.message).toEqual(errorStr);
  }
});