我有一个包含以下构造函数的组件。
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