2

我正在尝试将间谍附加到我的反应组件上的单击事件。我正在使用Enzyme with MochaChai但无法通过以下测试:

it('Handles a Click Event', () => {
    let rootId = Bigtree['rootId'];
    const spy = sinon.spy();


    const render = shallow(<EnvH tree={smalltree.objects} 
    node={smalltree.objects[rootId]} root={rootId}/>);


    render.find('.toggler').simulate('click');

    expect(spy.called).to.be.true;
});

这是我正在测试的组件:

class EnvH extends React.Component {
return (
  <div className='top' key={Math.random()}>
    <div className={'tableRow row'} id={node.id} style={rowStyle} key={Math.random()}>
      <div style={nodeStyle} className={'root EnvHColumn ' + classNames(classObject)} key={Math.random()}>
        //Here is the actual Click Item in question
        <span className={'toggler'} onClick={this.toggleCollapseState.bind(this)}>{node.type} - {node.name}</span>
      </div>
      <ColumnContent columnType={'description'} nodeInfo={node.description} />
      <ColumnContent columnType={'createdOn'} nodeInfo={node.createdAt} />
      <ColumnContent columnType={'updatedOn'} nodeInfo={node.updatedAt} />
    </div>
    <div className={'Children'} style={childrenStyle} key={Math.random()}>
      {childNodes}
    </div>
  </div>
);

这是单击跨度时调用的函数:

  toggleCollapseState() {
     this.setState({collapsed: !this.state.collapsed});
  };

提前感谢您对此提供的任何帮助。我还应该提到,测试没有通过,说明它期望为真,但发现为假。

4

1 回答 1

1

您的测试未通过,因为该spy函数未提供给该span.toggler元素,因此它从未被它调用。要使测试通过,您应该改为编写

sinon.spy(EnvH.prototype, 'toggleCollapseState')

接着

expect(EnvH.prototype.toggleCollapseState.calledOnce).to.be.true

于 2016-04-20T09:33:04.787 回答