Expresso Tutorials

I found almost no documentation other than the official JavaScript TDD framework written for nodejs called Expresso. Any help?

+6
source share
2 answers

I learned Expresso basically by looking at the js-traverse source. This is a good example because:

  • It has a lot of tests.
  • This is for a fairly simple library.
  • Its package.json configured correctly. It includes expresso as devDependency, so it will be installed when you run npm install . , and it includes a script test, so its tests can run with npm test .
+6
source

Here is a video tutorial on nodetuts.com covering Expresso and Should.js

http://vimeo.com/19763028

Edit: Updated to link to point to Vimeo.

+2
source

Source: https://habr.com/ru/post/894592/


All Articles