我有一个表单,它有一个附加到提交事件的处理程序,如下所示:
$('#myForm').bind('submit', $.proxy(this, 'form_onSubmit'));
我不知道如何测试这行代码以确保在提交表单时,它使用正确的事件处理程序。例如,这不起作用,因为页面一直在无限循环中提交自己:
describe('Submitting the form', function() {
it ('Uses the correct event handler', function() {
spyOn(myConstructor, 'form_onSubmit');
$('#myForm').trigger('submit');
expect(myConstructor.form_onSubmit).toHaveBeenCalled();
});
});
我也一直在尝试使用:
expect($('#myForm')).toHandleWith('submit', myConstructor.form_onSubmit);
但由于我无法在任何地方找到一个可行的示例,我确定我使用不正确(Jasmine 抛出错误“无法读取未定义的属性'提交'”,其中未定义是 this.actual。数据(“事件”))。
有人可以帮忙吗?我已经玩了好几个小时了!谢谢。