最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Jquery testing using jasmine - Stack Overflow

programmeradmin2浏览0评论

I am very beginner in jasmine. I dont Know how to test this following jquery code using jasmine.

 if ($('.data-block').length > 0) {
   $('.span4:even', '.data-block').addClass('even');
   $('.span4:odd', '.data-block').addClass('odd');
 }

Can you tell me how i write the testing code using jasmine for about this jquery program. Thank you for your answer.

I am very beginner in jasmine. I dont Know how to test this following jquery code using jasmine.

 if ($('.data-block').length > 0) {
   $('.span4:even', '.data-block').addClass('even');
   $('.span4:odd', '.data-block').addClass('odd');
 }

Can you tell me how i write the testing code using jasmine for about this jquery program. Thank you for your answer.

Share Improve this question asked Nov 2, 2012 at 9:27 WillingWilling 6221 gold badge6 silver badges16 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

You can use Jasmine-JQuery plugin and test against an injected DOM:

https://github./velesin/jasmine-jquery

The plugin provides custom matchers such as:

expect($('.span4:even')).toHaveAttr('class', 'even')

Ps Here you have a short introduction.

发布评论

评论列表(0)

  1. 暂无评论