我在React组件的componentDidMount()
方法中通过re-base与Firebase绑定状态。在我使用sinon的组件的单元测试中,我想删除该功能,以便它实际上不执行绑定。我不知道怎么做,我做:
this.base
?bindToState
?constructor() {
super();
this.base = Rebase.createClass(config.firebaseUrl);
}
componentDidMount() {
this.rebaseRef = this.base.bindToState('questions', {
context: this,
state: 'questions'
});
// other unrelated functionality below
}