Can't figure it out how to test onClick function with multiple actions in it.
onButtonClick = function(action){
this.props.otherAction();
action();
}
...
<Button bsStyle="success" bsSize="small" onClick={onButtonClick.bind(this,someAction}>
Something
</Button>
And the test I currently have is like this.
const onButtonClick = function (action) {
actions.otherAction();
action();
};
it('Should include a button with multiple actions on onClick event.', function () {
const button = shallowTestUtils.findAllWithType(_component, Button);
expect(button[0].props.onClick).to.equal(onButtonClick.bind(this, actions.someAction));
});
The result i get is this.
AssertionError: expected [Function] to equal [Function]
The thing is that every call of
Function.prototype.bind
returns you a new function. So these functions are not equalIf you want to check that button receives your click handler, you can trigger simulated click and check the result of the action. Also, you can mock
onClick
to spy function.UPD. If you want to test your component against the store, to be sure that proper actions were dispatched, you can do it in the following way.
First, create you mock store:
Then pass this store down to your component. (I assume that your
MyComponent
is connected to store)See Sinon documentation to learn more about spy checks.