Most of the existing questions about unit testing JavaScript code and integrating it into a continuous integration environment seem to date back to the dawn of time (or at least 2008 or 2009 :) ). Even a recent one is from about a year and a half ago:

Running JavaScript unit tests headlessly in a Continuous Integration build

Before I launch into trying to use js-test-driver to build tests and integrate them into Jenkins (nee Hudson), is this still the best approach in 2011?

We've got code that uses JavaScript and jQuery, Lawnchair, lccache, Fancybox, and more. I don't think we have to test all of it, but it would be nice if we could build tests for a reasonable subset. Bonus points if the solution is happy with backbone.js. It's looking more and more likely as time wears on.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

After some further looking into this, we're going to give Jasmine BDD a try for our testing. It's featured in the PeepCode videos on Backbone.js as well as this excellent article series about testing Backbone.js using Jasmine:

If we go down this route it appears we may have to combine it with JsTestDriver so we can plug the whole mess into Jenkins.

link|improve this answer
feedback

You could run Selenium tests together with Jenkins.

link|improve this answer
I like the fact that there's already a plugin for that. js-test-driver doesn't seem to have it quite as neat as that but it still doesn't look too bad: cjohansen.no/en/javascript/… – John Munsch Aug 30 '11 at 13:25
1  
AFAIK, Selenium is more for functional testing of web apps, not unit testing of JavaScript. (Please tell me if I am wrong.) – Roy Tinker Jan 10 at 2:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.