Node.js: Should I use vows or exploits or NodeUnit or Zombie.js or all?

What will I use when developing a node.js application?

+5
source share
2 answers

Zombie.js will provide you with a mute browser for work.

It should work fine with NodeUnit or Vows. Zombie.js uses vows for its own tests. NodeUnit can be configured to output JUnit-compatible XML for use with a continuous integration solution such as Hudson.

+1
source

I use vows because it has an observer (which means tests run automatically) and it loads CoffeeScript.

+1
source

All Articles