-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
44 lines (37 loc) · 968 Bytes
/
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
34
35
36
37
38
39
40
41
42
43
44
import React from 'react'
import { mount } from 'enzyme'
import Catcher from './'
let cleanup
beforeEach(() => {
const setup = () => {
const spy = jest.spyOn(console, 'error').mockImplementation()
return () => {
spy.mockRestore()
}
}
cleanup = setup()
})
afterEach(() => {
cleanup()
})
function Thrower() {
throw new Error('🤡')
}
it('calls the onCatch prop for the componentDidCatch lifecycle hook', () => {
const fn = jest.fn()
const result = mount(
<Catcher onCatch={fn}>
<Thrower />
</Catcher>,
)
expect(fn).toHaveBeenCalled()
})
it('updates the componentDidCatch instance method when the onCatch prop changes', () => {
const fn1 = jest.fn()
const fn2 = jest.fn()
const result = mount(<Catcher onCatch={fn1}>{null}</Catcher>)
result.setProps({ onCatch: fn2 })
expect(result.instance().componentDidCatch).toBe(fn2)
result.setProps({ children: <Thrower /> })
expect(fn2).toHaveBeenCalled()
})