我正在开发一个使用ReactiveDict
. 我的项目是使用 Meteor 构建的,具有 Mantra 规范。
我有一个名为Login
. 这个概念是,当组件渲染时,ReactiveDict
状态被清除,因为组件渲染没有错误。不过那很好。我的容器中有这段代码:
export const depsMapper = (context, actions) => ({
context: () => context,
loginUser:actions.login.loginUser,
clearState: actions.globals.clearState
});
这些是组件将执行的操作。在我的组件中:
componentWillMount(){
this.props.clearState('LOGIN_ERROR_MESSAGE');
}
最后,在我的测试代码中,我有:
it.only('should render a <Form/> component', () => {
const loginWrapper = shallow(<Login/>);
expect(loginWrapper.find(Form)).to.have.length(1);
});
当我运行时npm test
,它说,this.props.clearState
不是一个函数。我该如何解决这个问题?提前致谢。