Reputation: 116293
I have found virtually no documentation other than the official one dealing with the JavaScript TDD framework written for nodejs called Expresso. Any help?
Upvotes: 6
Views: 2420
Reputation: 11992
There's a video tutorial on nodetuts.com covering Expresso and Should.js
Edit: updated to the link to point to Vimeo.
Upvotes: 2
Reputation: 14725
I learned Expresso mainly by looking at the source for js-traverse. It's a good example because:
package.json
set up properly. It includes expresso as a devDependency so it will get installed when running npm install .
, and it includes a test script so its tests can be run with npm test
.Upvotes: 6