Expected spy click to have been called

1.1k Views Asked by At

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)

1

There are 1 best solutions below

1
On

Referring to the context from the linked question:

onPlayerStateChange(event) {
 if(event.data === 0) {           
   $('.close.close-popup').click();
 }
}

Is event.data set to 0? Because undefined is not equal to zero: false === (undefined === 0)

describe('onPlayerStateChange', () => {
    it('should stop video when data equals to zero', () => {
        event.data = 0;
        const closeElmeent = $(".close.close-popup");
        const spy = spyOn(closeElmeent, 'click'); // if you want it to actually click, you can use "spyOn(closeElmeent, 'click').and.callThrough();"
        onplayerStateChange(event);
        expect(spy).toHaveBeenCalled();
    });
});