I am testing that the click event for an element is called in Jasmine-Teaspoon. However, I am getting an error:
"Expected spy click to have been called."
describe("onPlayerStateChange", function(){
it("should stop video when data equals to zero", function(){
var closeElmeent = $(".close.close-popup");
var spy = spyOn(closeElmeent, 'click');
player.onPlayerStateChange(event);
expect(spy).toHaveBeenCalled();
});
});
See full code being tested here:
ReferenceError: Can't find variable: onPlayerReady (When using callback)
Referring to the context from the linked question:
Is event.data set to 0? Because undefined is not equal to zero: false === (undefined === 0)