tressa
v0.3.1
Published
A little test utility
Downloads
109
Maintainers
Readme
tressa
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