Error on Jasmine - Expected event click to have been triggered on #DIV_ID(Jasmine 上的错误 - 在 #DIV_ID 上触发了预期的事件点击)
问题描述
我在 Jasmine 框架中开发测试工具时参考此链接触发事件:
I am referred this link to trigger a event when developing a testing tool in Jasmine framework:
http://www.htmlgoodies.com/beyond/javascript/js-ref/testing-dom-events-using-jquery-and-jasmine-2.0.html
在 Jasmine 框架中触发 #DIV_ID 上的点击事件后,我试图获取新应用的 CSS 属性.
I am trying to get the newly applied CSS attribute after triggering a click event on #DIV_ID in Jasmine framework.
我试过这个代码:
spyEvent = spyOnEvent('#DIV_ID', 'click');
$('#DIV_ID').trigger( "click" );
expect('click').toHaveBeenTriggeredOn('#DIV_ID');
expect(spyEvent).toHaveBeenTriggered();
但我收到错误消息:预计事件点击已在#DIV_ID 上触发
谁能帮我解决我的问题.
Anyone help me to resolve my problem.
提前致谢.
推荐答案
你的代码有语法错误:
var spyEvent = spyOnEvent($('#DIV_ID'), 'click');
$('#DIV_ID').trigger( "click" );
expect('click').toHaveBeenTriggeredOn($('#DIV_ID'));
expect(spyEvent).toHaveBeenTriggered();
我希望这行得通.
这篇关于Jasmine 上的错误 - 在 #DIV_ID 上触发了预期的事件点击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Jasmine 上的错误 - 在 #DIV_ID 上触发了预期的事件点
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01