Test React组件方法调用函数pass作为prop

时间:2017-08-24 16:51:19

标签: reactjs testing enzyme jest

我想测试一下,当从React组件调用一个方法时,它会触发一个函数传递给组件作为道具。 方法是这样的:

customMethod() {
  // Do something

  this.props.trackEvent({
    category: 'eventCategory',
    action: 'eventAction',
    label: 'eventAction',
  });

  // Do something else
}

可以通过不同的方式调用该方法,因此我只想进行一般测试:如果调用了customMethod,则应该使用数据触发this.props.trackEvent。

有没有办法用jest和/或酶触发方法调用?我读到过这样的事情:

const wrapper = shallow(<AdPage {...baseProps} />);
wrapper.instance().customMethod();

但它不起作用......任何想法。 我在测试中很新,所以我应该采用不同的方法进行这种测试?

1 个答案:

答案 0 :(得分:12)

假设你的customMethod是一个组件方法,我会像这样测试它:

(1)在创建包装器时将trackEvent prop假为jest.fn()

(2)使用wrapper.instance().customMethod();

调用customMethod

(3)确保props.trackEvent与你提到的参数一起使用。

举个例子:

test('customMethod should call trackEvent with the correct argument', () => {
  const baseProps = {
    // whatever fake props you want passed to the component
    // ...
    trackEvent: jest.fn(),
  };
  const wrapper = shallow(<AdPage {...baseProps} />);

  wrapper.instance().customMethod();

  expect(baseProps.trackEvent).toHaveBeenCalledTimes(1);

  expect(baseProps.trackEvent).toHaveBeenCalledWith({
    category: 'eventCategory',
    action: 'eventAction',
    label: 'eventAction',
  });
});