当前位置:  开发笔记 > 编程语言 > 正文

如何使用jest和酶来监视componentWillMount

如何解决《如何使用jest和酶来监视componentWillMount》经验,为你挑选了1个好方法。

我正在尝试测试是否已调用componentWillMount,而我的测试是

test('calls `componentWillMount` before rendering', () => {
  let fn = jest.fn(SomeComponent.prototype.componentWillMount)
  mount()
  expect(fn).toHaveBeenCalled()
})

但即使调用componentWillMount方法,测试也不会通过.我在这里错过了什么?



1> 小智..:

我不知道其他答案是否对您的问题有帮助,但您不需要测试componentWillMount.React应该已经为你做了那个测试.

与测试更相关的是测试您为组件添加该方法的功能或操作.

如果您正在进行一些API调用,运行基于props或其他任何东西的函数,那么您应该测试它.模拟componentWillMount触发的函数/动作/代码,并对此进行断言和期望.

例:

零件:

class YourComponent extends Component {

  componentWillMount() {
    /*this fetch function is actually what you want to test*/
    this.props.fetch('data')
  }

  render() {
    /* whatever your component renders*/ 
  }    
}

测试:

test('should call fetch when mounted', () => {
  let mockFetch = jest.fn()

  const wrapper = mount();

  expect(wrapper).toBeDefined();
  expect(mockFetch).toHaveBeenCalled();
  expect(mockFetch.mock.calls[0]).toEqual(['data'])
});

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有