Randomblue
Randomblue

Reputation: 116293

Expresso tutorials

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

Answers (2)

Kyle Finley
Kyle Finley

Reputation: 11992

There's a video tutorial on nodetuts.com covering Expresso and Should.js

http://vimeo.com/19763028

Edit: updated to the link to point to Vimeo.

Upvotes: 2

Benjamin Atkin
Benjamin Atkin

Reputation: 14725

I learned Expresso mainly by looking at the source for js-traverse. It's a good example because:

  • It has a lot of tests
  • It's for a fairly simple library
  • Its 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

Related Questions