我最近在我的一个
javascript函数中添加了一个e.preventDefault(),它破坏了我的jasmine规范.我试过spyOn(e,’preventDefault’).和返回(true);但我得到e是未定义的错误.我如何存根e.preventDefault()?
showTopic: function(e) { e.preventDefault(); midParent.prototype.showTopic.call(this,this.model,popup); this.topic.render(); } it("calls the parent",function() { var parentSpy = spyOn(midParent.prototype,"showTopic"); this.view.topic = { render: function() {} }; this.view.showTopic(); expect(parentSpy).toHaveBeenCalled(); });