I have a plugin defined as such
(function($){
$.fn.robodisco = function(callerSettings) {
var findVideos = function(params){ ... }
$(".track").click(function(){
....
findVideos(data) });
....
and in my test I want to spy on the findVideos and check its called. Jasmine however keeps complaining it cant find the method. Here is my spec
it("searches for videos for track", function(){
spyOn($.fn.robodisco, "findVideos");
$lastTrack.click();
expect($.fn.robodisco.findVideos).toHaveBeenCalled();
});
is my syntax wrong?