в js файле
import { bindActionCreators } from "redux";
const mapDispatchToProps = dispatch => {
const MyActions = bindActionCreators(MyActions, dispatch);
return {
actions: {
method1: () => {
MyActions.myActionMethod();
},
}
Теперь я хочу проверить, отправляет ли вызов метода1 MyActions.myActionMethod
мой .test. js код
it("Should call myAction", () => {
jest
.spyOn(MyActions, "myActionMethod")
.mockImplementation(() => {
console.log("calling mock imple");
});
enzymeWrapper.props().actions.method1();
});
Может кто-нибудь предложить мне, как издеваться над bindActionCreators?