javascript – 在茉莉花测试中存储e.preventDefault()

前端之家收集整理的这篇文章主要介绍了javascript – 在茉莉花测试中存储e.preventDefault()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近在我的一个 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();
});

解决方法

创建模拟对象(使用您需要的间谍)的另一种方法是使用jasmine.createSpyObj(). @H_403_8@包含间谍名称的数组必须作为第二个参数传递.
var e = jasmine.createSpyObj('e',[ 'preventDefault' ]);
this.view.showTopic(e);
expect(e.preventDefault).toHaveBeenCalled();
原文链接:https://www.f2er.com/js/159668.html

猜你在找的JavaScript相关文章