Which javascript testing frameworks out there provide support for testing commonjs modules?

link|improve this question

feedback

4 Answers

I've been using expresso by Visionmedia in node.js

https://github.com/visionmedia/expresso

It extends the basic assert functions http://nodejs.org/docs/v0.4.7/api/assert.html

So the default style assert:

exports['test String#length'] = function() {
    assert.equal(6, 'foobar'.length);
};

can be made DRYer

exports['test String#length'] = function(){
    assert.length(6, 'foobar');
};
link|improve this answer
feedback

Seems like they have their own UnitTesting framework

http://wiki.commonjs.org/wiki/Unit_Testing/1.0

http://wiki.commonjs.org/wiki/Unit_Testing/1.1

link|improve this answer
feedback

In my limited experience, Zombie.js is very good

link|improve this answer
feedback

Should extends the standard asserts with some BDD style ones:

https://github.com/visionmedia/should.js

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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