vote up 20 vote down star
11

What's the best way to go about running unit tests for Javascript? I've been playing around with Selenium IDE, but it's Firefox-specific. Selenium RC looks... difficult - but is it the best way to run tests in, say, IE6?

Also, is it worth doing? I haven't seen much about automated tests for Javascript applications, but it seems to me that as the language running most of the user experience it should be tested. Do you test your Javascript, just back end code, or neither?

flag

10 Answers

vote up 14 vote down check

in the last couple of days i've also been looking for unit testing franeworks for jscript. still haven't decided on one. this one looks interesting

also it was recently launched a firebug extension called FireUnit: FireUnit provides a simple JavaScript API for doing simple test logging and viewing within a new tab of Firebug

link|flag
vote up 10 vote down

JsUnit is a port of JUnit that allows you to run Javascript tests on multiple browsers. I do a lot more back end testing than front end, but I like to automate any test that I can.

Update: In response to leeand00's comment, there are several alternatives to JsUnit.

Just to name a few. There are more alternatives for different development environments as well.

link|flag
I like JSUnit too, but it doesn't seem to work with the latest version of Firefox 3. Is there an alternative? – leeand00 Mar 6 at 1:49
@Bill the Lizard Thanks for the alternatives! I did find a way to sort-of make it work with the exception of some browser cache problems...stackoverflow.com/questions/619170/… – leeand00 Mar 6 at 16:11
vote up 6 vote down

I already have tried both JsUnit and QUnit and I found QUnit is more easy to use. Some good articles about QUnit:

Kind Regards

link|flag
vote up 3 vote down

I've recently had success with Crosscheck http://www.thefrontside.net/crosscheck a JS unit testing framework implemented in Java (on Mozilla Rhino engine).

On the plus side:

  • Crosscheck simulates different Browser DOM implementations (IE, Firefox)
  • Implemented in Java, runs tests in Java, does not require a browser to run tests
  • You can truly do JavaScript TDD, fast feedback loop
  • Maven plugin available on Google Group page http://groups.google.com/group/crosscheck, so you can integrate your tests into automated build
  • works with JS libraries (I used jQuery, Prototype)
  • project owners are pretty responsive on the Google group forum

On the minus side:

  • Crosscheck offers only a simulation of different browsers (but that gets you a long way)
  • Crosscheck is still pre-1.0
  • I had to tweak and rebuild the Maven plugin, it was not binary-compatible with the latest crosscheck release
  • Maven plugin not available in any public repository at this time
link|flag
vote up 1 vote down

Selenium RC is mostly used for testing the webpage layout and DOM, although it does provide a getEval() function that you can use to explicitly test javascript expressions.

From the Selenium IDE in Firefox you can export the recorded testcase to the code to the language of your choice, and I think the Selenium doco and tutorial should be enough to get you started with the RC server.

Its an extremely useful tool if you want to also test your page layout and simulate user interactions.

However, if you're purely testing javascript, then JsUnit (as suggested by Bill) is probably a better option.

link|flag
vote up 1 vote down

JSUnit is difficult if you have anything asynchronous going on.

Yahoo's YUI test is easier in that case: http://developer.yahoo.com/yui/yuitest/

link|flag
vote up 1 vote down

JSSpec is an alternative to JSUnit with a behavior driven development bent to it. It looks a bit more javascript-y to my eye.

link|flag
vote up 0 vote down

look at Watin if you use visual studio

link|flag
It won't help you with unit-testing. It's a browser automation tool – Alexander Abramov Nov 1 at 19:15
vote up 0 vote down

Not quite unit testing, but you may also want to check out lint.

link|flag
vote up 0 vote down

Google's jsTestDriver is also nice, especially for testing cross-browser.

In addition to a JUnit-like framework for writing the tests using assert*() methods, it provides an automatic test runner for quickly testing multiple browsers at the same time with just a "run" click from your IDE (Eclipse and IntelliJ are supported).

And there is an adapter for QUnit.

link|flag

Your Answer

Get an OpenID
or

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