vote up 10 vote down star
10

My main JavaScript framework is jQuery so I would like my unit test and mocking frameworks to be compatible with that. I'd rather not have to introduce another JavaScript framework.

I am currently using QUnit for unit testing and Jack for mocking, but I am pretty new to the whole unit testing of JavaScript.

Does anyone else have a better tool to suggest? What has worked for you?

flag

Dude, you gotta quit with these "What is the best X?" questions, you have a large ratio of those and using that word makes your questions subjective. Change the wording so as not to give your questions this same problem. – Jason Bunting Oct 16 '08 at 16:58

12 Answers

vote up 3 vote down check

QUnit
jQUnit
Writing JS tests with QUnit and jQUnit

QUnit is the unit testing framework for the jQuery JavaScript framework. The testing framework itself uses the jQuery library, but the tests can be written for any JavaScript and do not require the code to use jQuery. JQUnit is a modified version of QUnit that adds in the setup, teardown, and assert functions that are more typical of an xUnit framework, and encapsulates everything in one global variable.

The visual interface of the testrunner page is nice, allowing you to drill down and see each assert in every test method. Writing tests is fairly easy, and you can run the test code directly on the testRunner page [8]. This allows for easy and visible DOM testing.

QUnit: MIT or GPL (choose) jQUnit: MIT License

Pros
- Asynchronous support
- Good for DOM testing
- Tests always run sequentially in the order they are added to a suite
- Debug on test page using firebug
- Syntax is similar to JUnit if using JQUnit, but simple to learn if using QUnit
Cons
- Automation would be difficult to implement
- Testing library requires jQuery

link|flag
vote up 0 vote down

I know you are asking for JQuery-compatible frameworks, but I want to throw script.aculo.us into the mix for completeness. They have a unit test suite that isn't bad.

link|flag
vote up 0 vote down

QUnit is the unit testing suite that jquery uses. As for CSS, I wouldn't bother. If you're handy with CSS than it's not an issue.

Here's what I do:
I have a mockups directory. In there I have the icons from http://famfamfam.com, a few png gradients, and a bunch of javascripts. I used to keep a default css but I didn't want to have the bloat cause my mockups often don't take a lot of work before going to production and to have an additional step to pare down the source wasn't worth the time saved.

link|flag
vote up 0 vote down

CrossCheck seemed extremely powerful when I looked at it, but we've not incorporated it into our build process at this time. It has the advantage of being browserless, and thus should work well in an automated build-and-test scenario.

http://thefrontside.net/crosscheck

link|flag
vote up 0 vote down

JsUnit is run from either the browser, through its Eclipse plug-in, or automatically through an ANT task. You create an HTML page with a bunch of test functions, which must be named with the prefix ‘test’, include the JS file you are testing. When any assert within a function fails, the entire function fails and stops executing. There is no guaranteed order in which these tests are run. You can create setup() and teardown() functions.
License: GPL, GLPL, MPL
Pros
- Automation is relatively easy to implement
- A lot of functionality
- Syntax is similar to JUnit
Cons
- Not great for DOM testing since it runs tests inside an iFrame.
- No guarantee that tests will be run in the order they are written.
- Can’t use firebug on testrunner page. Need to have another tab open with the actual test code.

link|flag
vote up 2 vote down

YUI Test
TDD With YUI Test

YUI Test is the test framework for Yahoo’s User Interface library. It is used by Yahoo to test its own library, and has syntax similar to jUnit.

Like jsUnit, YUI Test comes with its own logging console that can output info, warnings and errors in addition to the results of each test.

YUI also provides the ability to send reports on the results in either JSON or XML format.

YUI Test is BSD Licensed.

Pros
- Really good documentation
- Active community
- Regular releases
- Syntax is similar to jUnit (test suites, asserts and setup/teardown)
- Asynchronous support
- Good for DOM testing
- Tests always run sequentially in the order they are added to a suite

Cons
- Automation not trivial to implement,but less difficult than other frameworks

link|flag
vote up 0 vote down

We've been using jsspec jsspec. Its very nice if you like rspec and BDD. Just saw an article by Justin Gehtland on using it "headless" as well.

link|flag
vote up 0 vote down

You could try HtmlUnit which had a JQuery compatible release over a year ago.

The advantage of HtmlUnit is that it isn't driving a browser so it is FAST.

The downside is that it isn't driving a browser so there are some JS things that won't work. But offsetting that they can run the JQuery tests so the JS support might be good enough for what you need.

link|flag
vote up 0 vote down

For mocking in JavaScript take a look at qMock, a framework a colleague and I wrote to complement our use of QUnit. Although the latter is great for unit tests, it doesn't allow for very effective async/business logic testing. We havn't 'tagged' any release as stable, but there's some decent docs on there, and if you checkout the svn you'll see qmock itself has unit tests behind it which are fairly self-explanatory.

Oh, and to automate testing as part of the build we used a simple selenium script to navigate through our testsuite (one testing page per JS file), and 'listened' for a pass or fail CSS class (added by QUnit). This works headless as well for IE/FF2 AFAIK

link|flag
vote up 0 vote down

For mozilla development, I fall in love with UXU, based on MozUnit but still active. Has nice features like mock server or sleep / yeld methods.

link|flag
vote up 0 vote down

I use the Screw Unit test framework and I've written my own mocking library called jsMocha which has been in heavy use in the company I work at for over 6 months.

link|flag
vote up 0 vote down

I'm not sure why no one has mentioned JsTestDriver! It has to be the one of the only JS Testing tools that actually work like you'd expect them to if you've used unit testing tools in other languages.

Running tests can be done without touching a browser, you can integrate it with IDE's, you can integrate it with Continuous integration systems... Oh, and it's fast, and can run tests in multiple browsers at the same time.

You can also use other testing frameworks like YUITest with it, making it even better.

link|flag

Your Answer

Get an OpenID
or

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