tressa

0.3.1 • Public • Published

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

Package Sidebar

Install

npm i tressa

Weekly Downloads

21

Version

0.3.1

License

MIT

Last publish

Collaborators

  • webreflection