tressa

v0.3.1
A little test utility
test async tests assert console tiny small utility

tressa build status

A little test utility from Andrea Giammarchi and Claudio D'angelis born after this post and this tweet.

Compatible with NodeJS 0.8 and higher.

var test = require('tressa');

test.title('My Library');

// synchronous
test(condition, 'optional comment');

// asynchronous
test
  .async(done => {
    setTimeout(() => {
      test(condition, 'optional comment');
      done();
    });
  })
  .then(() => {
    console.log("That's it!");
  });

(C) 2017 MIT Style License

npm i tressa

Metadata

  • MIT
  • Whatever
  • Andrea Giammarchi
  • released 3/4/2017

Downloads

Maintainers