我有以下类组件:
export class HelloWorld extends Component {
constructor(props) {
super(props)
this.methodA = this.methodA.bind(this)
this.methodB = this.methodB.bind(this)
}
methodA(props) {
if (props.someValue === true) {
......
methodB(props.someValue, true)
} else {
......
methodB(props.someValue, false)
}
}
...
...
}
我基本上打电话给methodA
用某些参数调用methodB
我必须通过它。
在Jest中,我很难编写methodB
中已调用methodB
的测试覆盖率
describe('componentA', () => {
it('should call componentB', () => {
const wrapper = enzyme.shallow(<HellowWorld {...(Object.assign(baseProps, { smsStatus: 'VALID' }))} />)
const spyFn = {
methodB: () => jest.fn()
}
const spyPreventDefault = jest.spyOn(spyFn, 'methodB')
wrapper.instance().methodA(baseProps)
expect(spyPreventDefault).toHaveBeenCalled()
})
})
我做错了什么?
答案 0 :(得分:1)
你试图将间谍挂在客观的spyFn上,这与<HellowWorld/>
完全无关。
您是否只想在methodB
<HellowWorld/>
进行间谍活动?
如果是这样,这是你的测试
describe('componentA', () => {
it('should call componentB', () => {
const wrapper = enzyme.shallow(<HellowWorld {...(Object.assign(baseProps, { smsStatus: 'VALID' }))} />)
const spyPreventDefault = jest.spyOn(wrapper.instance(), 'methodB');
wrapper.instance().forceUpdate();
wrapper.instance().methodA(baseProps)
expect(spyPreventDefault).toHaveBeenCalled()
})
})