it('should call setCampaignDate on click', function () {
let spySetCampaign = sinon.spy(wrapper.instance(), 'setCampaignDate');
let datePickers = wrapper.find('.campaign-date-tab').dive().find(Datepicker);
assert.equal(datePickers.length, 2);
console.log(datePickers);
var date = new Date();
for (let index = 0; index < datePickers.length; index++) {
datePickers.simulate('change');
sinon.assert.calledOnce(spySetCampaign.withArgs(date, 'startDate'));
}
});
I am trying to simulate my 'change' function and trying to test whether 'setCampaignDate' is called or not. The problem here is that the length of my shallow component returned by find is 2:
let datePickers = wrapper.find('.campaign-date-tab').dive().find(Datepicker);
When trying to call simulate on 'datepickers', it gives an error as below:
'Error: Method “props” is only meant to be run on a single node. 2 found instead.'.
Not sure how to simulate on components having nodes greater than 1.