admin管理员组文章数量:1344238
How should I go about testing a jQuery Hover action with Jasmine? My jQuery looks like
$('.class').hover(
function() { $('#someid').hide(); },
function() { $('#someid').show(); }
);
How could I simulate moving the hover action with jasmine and expect that 'someid' element is hidden and shown as it should?
How should I go about testing a jQuery Hover action with Jasmine? My jQuery looks like
$('.class').hover(
function() { $('#someid').hide(); },
function() { $('#someid').show(); }
);
How could I simulate moving the hover action with jasmine and expect that 'someid' element is hidden and shown as it should?
Share Improve this question edited Jul 27, 2016 at 14:12 sobi3ch 2,8332 gold badges34 silver badges42 bronze badges asked Oct 14, 2011 at 16:11 membLopermembLoper 2,0021 gold badge20 silver badges21 bronze badges1 Answer
Reset to default 12You should be able to directly trigger a mouseover event and then test for the appropriate behavior:
it("should do something on hover", function() {
$('.class').trigger('mouseover');
expect($('#someid')).toBeHidden();
$('.class').trigger('mouseout');
expect($('#someid')).toBeShown();
});
$('#someid')
must be in the DOM. The best way to do that is through a fixture.
本文标签: javascriptTesting jQuery Hover with JasmineStack Overflow
版权声明:本文标题:javascript - Testing jQuery Hover with Jasmine - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743730780a2529144.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论