Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's consider the state of JavaScript unit tests and testing tools.

JsUnit

We already use it for some of our js code.

Pros

  • can be invoked from an ant build file
  • launches browser to run the tests
  • Eclipse plug-in

Cons

  • launches browser to run the tests
  • Does not support js file to write the unit test code: it has to be embedded inside an html file
  • it has not been updated for a few years

Notes:

  • There is a JsUnit (2).
  • An 'ant' is an open source build tool; "Ant" because it is a little thing that can build big things.

RhinoUnit

Pros

  • ant driven
  • supports js file
  • very simple to use

Cons

  • Simulation of JavaScript engine: not advanced enough to support our code: I tried to run test code working with JsUnit: I encountered issue when loading our common JavaScript files

crosscheck

Pros

  • Can be invoked from ant build file
  • Simulates real browser behaviour

Cons

  • Simulation of JavaScript engine from a limited number of browser versions
  • No activity for 2 years: it does not support Firefox versions 2.x nor 3.x

jsspec

Pros

  • Runs on actual browser

Cons

  • JavaScript only framework: cannot be called from ant build file

jspec

Pros

  • Runs on actual browser

Cons

  • Does not seem to support our code: I tried to run test code running with js unit: I encountered issue when loading our common JavaScript files
  • JavaScript only framework: cannot be called from ant build file,

Screw.unit

Pros

  • Runs on actual browser

Cons

  • JavaScript only framework: cannot be called from ant build file

Note: I did not try it but it is very similar to jsspec and jspec.

It looks like JsUnit is the only choice we have. Please note it is already used in other components. It is not perfect though because it does not provide an easy way to apply the Test-Driven Development (TDD) process for the following reasons: - It does not provide a simple and integrated way to run JavaScript unit test - It forces you to write the unit tests in a html file instead of a .js file, - It forces you to have a local installation of the JsUnit framework in order to avoid absolute hard coded path to reference js unit files.

As a consequence, you have to switch back and forth from you IDE and all the browsers we want to support while "TDDing" in JavaScript. It is feasible but I do not think it is very effective (I may be wrong here).

Also I still need to look at a proper JavaScript editor or Eclipse plug-in allowing easy referencing and refactoring. There is the JSTD one which is part of WTP, however I have not played with it enough in order to have a good idea of it.

As a conclusion, I do not think we have the tools to be fully "TDD" compliant. We can be TOD (Test Oriented Development), but I have not found any tool that allows us to work with JavaScript as efficiently as with Java. Once again, the ideal solution would be to have something identical to JUnit.

What JavaScript unit testing tools do you use?

Recent Entries:

share|improve this question
2  
"Runs on browser" is a pro? I'm only getting started with JS testing, but that sounds like an almighty great negative to me. Surely you'd want a basic JS interpreter that ran on the command line? Clearly I'm missing something here ... – Duncan Bayne Aug 8 '11 at 3:09
3  
@Duncan Bayne, I guess if it just runs on the browser, instead of requiring an Ant build or a Rhino runtime to execute the JavaScript, it could be seen as a pro ... less tooling required (a lot of JS people will likely be UI and browser focused)... similarly, to test node.js server side code, running in a browser would probably be a con. Depends on how you're going to use it in the end (as always). – jamiebarrow Aug 25 '11 at 11:26
2  
You say, "JavaScript only framework: cannot be called from ant build file", but you can run Rhino with Java from an Ant script, therefore you can run any Javascript from Ant. – rehevkor5 Jun 13 '12 at 22:32
2  
I would add QUnit for all its awesomeness, maybe you might want to take a look here blog.fruiapps.com/2012/12/… – whatf Dec 24 '12 at 14:31
1  
For something simpler and more elegant than all the BDD stuff referenced in this thread look at Doctestjs (doctestjs.org). – boxed Mar 24 at 13:23
show 1 more comment

closed as not constructive by Bo Persson, Aziz Shaikh, stealthyninja, DocMax, Alessandro Minoccheri Nov 23 '12 at 7:28

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

21 Answers

up vote 388 down vote accepted

Buster.js

Very similar server/client concept as JsTestDriver (see further down). Except that the server is built with JavaScript (node.js) instead of Java, and the API follows JS best practices to a much higher degree.

A browser JavaScript testing toolkit. It does browser testing with browser automation (think JsTestDriver), qunit style static html page testing, testing in headless browsers (phantomjs, jsdom, ...), and more. Take a look at the overview!

A Node.js testing toolkit. You get the same test case library, assertion library, etc. This is also great for hybrid browser and Node.js code. Write your test case with Buster.JS and run it both in Node.js and in a real browser.

Screencast: Buster.js Getting started (2:45)

pros:

  • Uses node.js, so compatible with Win/OS X/Linux
  • Run tests from browser or headless with PhantomJS (soon)
  • Run on multiple clients at once
  • Supports NodeJS testing
  • Don't need to run server/clients on development computer (no need for IE)
  • Run tests from command line (can be integrated in ant/maven) Write tests xUnit or BDD style
  • Supports multiple JavaScript test frameworks
  • Defer tests instead of commenting them out
  • SinonJS built in
  • Auto-run tests on save
  • Proxies requests cross-domain
  • Possible to customize:
    • Extend it to wrap other test-frameworks (JsTestDriver built in)
    • Your own assertions/refutes
    • Reporters (xunit XML, traditional dots, specification, tap, teamcity and more built in)
    • Customize/replace the HTML that is used to run the browser-tests
  • TextMate and Emacs integration

cons:

  • Stil in beta, so can be buggy
  • No plugin for Eclipse/IntelliJ (yet)
  • Doesn't group results by os/browser/version like TestSwarm *. It does however print out the browser name and version in the test results.
  • No history of previous test results like TestSwarm *
  • Doesn't fully work on windows as of nov 2012

* TestSwarm is also a Continuos Integration server, while you need a separate CI server for Buster.js. It does however output xUnit XML reports, so it should be easy to integrate with Hudson, Bamboo or other CI servers.

Karma

Again, very similar server/client concept as JsTestDriver (see further down). Like Buster.js the server is built with JavaScript (node.js).

Screencast: Karma Getting started

pros:

  • Uses node.js, so compatible with Win/OS X/Linux
  • Run tests from browser or headless with PhantomJS
  • Run on multiple clients at once
  • Option to launch, capture, and automatically shutdown browsers
  • Option to run server/clients on development computer or separately
  • Run tests from command line (can be integrated in ant/maven)
  • Write tests xUnit or BDD style
  • Supports multiple JavaScript test frameworks
  • Auto-run tests on save
  • Proxies requests cross-domain
  • Possible to customize:
    • Extend it to wrap other test-frameworks (Jasmine, Mocha, QUnit built-in)
    • Your own assertions/refutes
    • Reporters
    • Browser Launchers
  • Plugin for WebStorm

cons:

  • Does not supports NodeJS testing
  • No plugin for Eclipse (yet)
  • No history of previous test results

TestSwarm

John Resig (jQuery) has created a tool for distributed JavaScript testing, TestSwarm. Mainly for open source JavaScript projects, but TestSwarm is open source, so you can set up a server yourself for corporate testing. Although this might require that you to do some modifications.

pros:

  • Continuos integration server for JavaScript
  • Supports all major browsers/operating systems
  • Run on multiple clients at once
  • Don't need to run server/clients on development computer (no need for IE)
  • Automatic run tests on all clients when you commit something (or whenever you modify the script to run the tests)
  • Show history of test results pr commit
  • Supports multiple JavaScript test frameworks
  • Have test results for OS and browser versions
  • Crowdsource to test in a multitude of browsers

cons:

  • Can not break your build through ant/maven
  • Don't notice the test fail before commit
  • No IDEplug-in

http://ejohn.org/blog/javascript-testing-does-not-scale/

TestSwarm architecture:

alt text

JsTestDriver

Some people at Google have also started on a distributed JavaScript tool, JsTestDriver. It is similar to TestSwarm, that it has a server, and clients connected. But it also has support for running tests from command line and plugins for Eclipse and IntelliJ!

pros:

  • Supports all major browsers/operating systems
  • Run on multiple clients at once
  • Don't need to run server/clients on development computer (no need for IE)
  • Run tests from command line (jar) (can be integrated in ant/maven)
  • Eclipse plugin
  • IntelliJ plugin
  • Supports multiple JavaScript test frameworks

cons:

  • Doesn't show results for os or browser version. Only browser names. It does however print out the version in the test results.
  • No history of previous test results
  • Very low project activity

Overview of how JsTestDriver works at runtime: alt text

Eclipse plugin screenshot:

alt text

Short intro video: http://www.youtube.com/watch?v=V4wYrR6t5gE

YUI Yeti

Yahoo now has their own JavaScript test run server, Yeti. Built with node.js. It should be able to run your existing YUI-tests as they are, and works in multiple browsers. Since it runs from the command-line I guess it's mostly similar to JsTestDriver.

alt text

Announcement from August 25th 2010: http://www.yuiblog.com/blog/2010/08/25/introducing-yeti-the-yui-easy-testing-interface/

If you have experience with this test-runner, please contribute with more info :)

Project home: http://yuilibrary.com/projects/yeti/

Jasmine

Jasmine

This is a test-runner that might interest developers familiar with Ruby or Ruby on Rails. The syntax is based on RSpec that's used for testing in Rails projects.

Jasmine is a behavior-driven development framework for testing your JavaScript code. It does not depend on any other JavaScript frameworks. It does not require a DOM.

If you have experience with this test-runner, please contribute with more info :)

Project home: https://github.com/pivotal/jasmine/

QUnit

QUnit focuses on testing JavaScript in the browser, while providing as much convenience to the developer as possible. Blurb from the site:

QUnit is a powerful, easy-to-use JavaScript unit test suite. It's used by the jQuery, jQuery UI and jQuery Mobile projects and is capable of testing any generic JavaScript code

QUnit shares some history with TestSwarm (above):

QUnit was originally developed by John Resig as part of jQuery. In 2008 it got its own home, name and API documentation, allowing others to use it for their unit testing as well. At the time it still dependended on jQuery. A rewrite in 2009 fixed that, now QUnit runs completelty standalone. QUnit's assertion methods follow the CommonJS Unit Testing specification, which was to some degree influenced by QUnit.

Project home: http://qunitjs.com/

Sinon

Another great tool is sinon.js by Christian Johansen, the author of Test-Driven JavaScript Development. Best described by himself:

Standalone test spies, stubs and mocks for JavaScript. No dependencies, works with any unit testing framework.

Test-Driven JavaScript Development http://tddjs.com/

share|improve this answer
2  
Holy crap that is better (from what I saw in the video)! I really need to go try this out. – leeand00 Jan 27 '10 at 17:22
3  
I just started using jsTestDriver with the qUnit adaptor. From what I have seen it is really very impressive! – Jacques Bosch May 18 '10 at 12:35
2  
TestSwarm web site dead. – user181548 Mar 25 '11 at 15:20
1  
@gregers: no, it was down when I wrote that comment and it is still down now. downforeveryoneorjustme.com/http://testswarm.com – user181548 Mar 28 '11 at 18:00
1  
TestSwarm appears to be up and running at swarm.jquery.org – broofa Aug 25 '11 at 4:30
show 10 more comments

Take a look at the Dojo Object Harness (DOH) unit test framework which is pretty much framework independent harness for JavaScript unit testing and doesn't have any Dojo dependencies. There is a very good description of it at Unit testing Web 2.0 applications using the Dojo Objective Harness.

If you want to automate the UI testing (a sore point of many developers) — check out doh.robot (temporary down. update: other link http://dojotoolkit.org/reference-guide/util/dohrobot.html ) and dijit.robotx (temporary down). The latter is designed for an acceptance testing. Update:

Referenced articles explain how to use them, how to emulate a user interacting with your UI using mouse and/or keyboard, and how to record a testing session, so you can "play" it later automatically.

share|improve this answer
Thanks for the suggestion of Dojo Object Harness, I never would have found it. I appreciate the other suggestions - but one step at a time. – Mark Levison Nov 19 '08 at 15:06
I've actually used this in a previous project, and found it invaluable. But then again, I can't compare - haven't used any other TDD framework. – Rakesh Pai Nov 19 '08 at 17:20
broken links here. – user181548 Mar 25 '11 at 15:13
Thanks for reporting dead links. I updated one of them, and will replace links to robots docs as soon as I they are up on a new web site. – Eugene Lazutkin Mar 25 '11 at 18:01

The JavaScript section of the Wikipedia entry, List of Unit Testing Frameworks, provides a list of available choices. It indicates whether they work client-side, server-side, or both.

share|improve this answer

Chutzpah - A JavaScript Test Runner

I created an open source project called Chutzpah which is a test runner for JavaScript unit tests. Chutzpah enables you to run JavaScript unit tests from the command line and from inside of Visual Studio. It also supports running in the TeamCity continuous integration server.

share|improve this answer
3  
I just started using Chutzpah to run Jasmine tests inside visual studio - it's nicely integrated: right click in the test file and chose 'run js tests' or 'run JS tests in browser'. I run the same jasmine tests using JSTestDriver. I prefer Chutzpah because I specify which files I depend upon being loaded at the top of the test file. For JSTestDriver I need a separate config file. – GarethOwen Mar 7 '12 at 16:00

BusterJS

There is also BusterJS from Christian Johansen, the author of Test Driven Javascript Development and the Sinon framework. From the site:

Buster.JS is a new JavaScrpt testing framework. It does browser testing by automating test runs in actual browsers (think JsTestDriver), as well as Node.js testing.

share|improve this answer

I've tried YUITest and Qunit. I find Qunit much simpler and easy to use.

share|improve this answer
It's too simple. No mocking, no nesting, no setup and teardown, no support for node.js like YUITest. – ajsie Apr 21 '11 at 5:51
2  
@weng: you can easily mock by replacing properties on your objects, it has setup, teardown is not needed if you (re)instanciate your objects each time. Nesting - don't know what you mean. My biggest problem right now is integrating it into our CI environment – Per Hornshøj-Schierbeck Aug 10 '11 at 10:34

google-js-test: new javascript testing framework recently released by Google: http://code.google.com/p/google-js-test/

  • Can be used without browser
  • Style and semantics that resemble Google Test for C++.
  • A built-in mocking framework that requires minimal boilerplate code (e.g. no $tearDown or $verifyAll) with style and semantics based on the Google C++ Mocking Framework.
  • No real DOM (testing of DOM interaction still possible)
  • Currently no binaries for Windows
share|improve this answer

We are now using Qunit with Pavlov and JSTestDriver all together. This approach works well for us.

QUnit

Pavlov, source

jsTestDriver, source

share|improve this answer

YUI has a testing framework as well. This video from Yahoo! Theater is a nice introduction, although there are a lot of basics about TDD up front.

This framework is generic and can be run against any JavaScript or JS library.

share|improve this answer

You have "runs on actual browser" as a pro, but in my experience that is a con because it is slow. But what makes it valuable is the lack of sufficient JS emulation from the non-browser alternatives. It could be that if your JS is complex enough that only an in browser test will suffice, but there are a couple more options to consider:

HtmlUnit: "It has fairly good JavaScript support (which is constantly improving) and is able to work even with quite complex AJAX libraries, simulating either Firefox or Internet Explorer depending on the configuration you want to use." If its emulation is good enough for your use then it will be much faster than driving a browser.

But maybe HtmlUnit has good enough JS support but you don't like Java? Then maybe:

Celerity: Watir API running on JRuby backed by HtmlUnit.

or similarly

Schnell: another JRuby wrapper of HtmlUnit.

Of course if HtmlUnit isn't good enough and you have to drive a browser then you might consider Watir to drive your JS.

share|improve this answer

You should have a look at env.js. See my blog for an example how to write unit tests with env.js.

share|improve this answer

We added JUnit integration to our Java to Javascript code generator ST-JS (http://st-js.sourceforge.net). The framework generates to corresponding Javascript for both the tested code and the unit tests and sends the code to different browsers.

There is no need for a separate server as the unit test runner opens the needed http port (and closes it once the tests finished). The framework manipulates the Java stacktrace so that the failed asserts are correctly displayed by the JUnit Eclipse plugin. Here is a simple example with jQuery and Mockjax:

@RunWith(STJSTestDriverRunner.class)
@HTMLFixture("<div id='fortune'></div>")

@Scripts({ "classpath://jquery.js",
       "classpath://jquery.mockjax.js", "classpath://json2.js" })
public class MockjaxExampleTest {
  @Test
  public void myTest() {
    $.ajaxSetup($map("async", false));
    $.mockjax(new MockjaxOptions() {
      {
        url = "/restful/fortune";
        responseText = new Fortune() {
          {
            status = "success";
            fortune = "Are you a turtle?";
          }
        };
      }
    });

    $.getJSON("/restful/fortune", null, new Callback3<Fortune, String, JQueryXHR>() {
      @Override
      public void $invoke(Fortune response, String p2, JQueryXHR p3) {
        if (response.status.equals("success")) {
          $("#fortune").html("Your fortune is: " + response.fortune);
        } else {
          $("#fortune").html("Things do not look good, no fortune was told");
        }

      }
    });
    assertEquals("Your fortune is: Are you a turtle?", $("#fortune").html());
  }

  private static class Fortune {
    public String status;
    public String fortune;
  }
}
share|improve this answer
Never heared about ST-JS before. Very cool stuff :) – NagyI Feb 18 '12 at 16:57

Check out the recent screencast covering recent changes to JSpec, you will like what you see ;) very sexy, powerful, extendable test framework.

http://vision-media.ca/resources/javascript/jspec-032-javascript-testing-framework

share|improve this answer

I have tried JsTestDriver and it looks pretty good but unfortunately does not work with prototype framework. It is already reported issue http://code.google.com/p/js-test-driver/issues/detail?id=32&q=prototype

share|improve this answer

Another name to throw into the ring would be Selenium, which (using Selenium RC) can be driven (for example) from Java, which allows for nice integration with JUnit/Eclipse/Ant. The actual JavaScript code to be tested runs in a real web browser (yes, that is slow), all of the major ones are being supported.

share|improve this answer
3  
I tried to comment already. I'm familiar with Selenium but viewed it as a functional test tool. Can you tell me how I would use it for Unit testing? I'm a little confused. – Mark Levison Nov 19 '08 at 16:50

You might also be interested in the unit testing framework that is part of qooxdoo, an open source RIA framework similar to Dojo, ExtJS, etc. but with quite a comprehensive tool chain.

Try the online version of the testrunner. Hint: hit the gray arrow at the top left (should be made more obvious). It's a "play" button that runs the selected tests.

To find out more about the JS classes that let you define your unit tests, see the online API viewer.

For automated UI testing (based on Selenium RC), check out the Simulator project.

share|improve this answer

A different approach, but crosses boundaries well is WATIN, WATIR, and WATIJ. Instead of testing javascript, they test the page its on, including specific interactions. Harnessed in the unit test framework (junit, nunit) the results can be run along with your other unit tests including from your build process.

http://watin.sourceforge.net/

share|improve this answer

MochiKit has a testing framework called SimpleTest that seems to have caught on. Here's a blog post from the original author.

share|improve this answer
SimpleTest - another great option. I'm glad I'm not doing the investigative work here ;-) – Mark Levison Nov 19 '08 at 15:05

It's been mentioned (@Aaron Digulla) but you should take a look at envjs (http://www.envjs.com) It's basically a DOM written in Javascript that can be run in Rhino (and i believe SpiderMonkey) so you get to run all your tests on your CI server... and it's open source.

http://ejohn.org/blog/bringing-the-browser-to-the-server/

share|improve this answer

I've liked using Jasmine because of the its simple, generic approach, BDD-style tests, ability to configure, and for Java environments, it integrates well with Maven (can fail build and generate JUnit reports) and Jenkins (can report test results and history).

share|improve this answer

I've been trying to improve my workflow for testing ajax, and have developed a lightweight addition to qunit and sinon which makes ajax testing more intuitive. See jqueryspy.com

share|improve this answer

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