用酶浅试验反应组分的状态

时间:2016-12-13 21:29:38

标签: reactjs enzyme

我有一个包含以下构造函数的组件。

constructor(props) {
  super(props);
  this.state = {
    displayCluster: {}
  };
}

在我的测试中,当我做浅渲染并尝试测试displayCluster的null状态值时。它会提示错误。

const wrapper = shallow<MyComponent />
t.equal(wrapper.state('displayCluster'), null, 'initially state should be null');
TypeError: Cannot read property 'displayCluster' of null

0 个答案:

没有答案