π― Why you should use it?
π₯ Installation
npm install --save titefπ Usage
npx titef test/awesome.specs.jsOlder npm:
node_modules/.bin/titef test/awesome.specs.jsπ£ Getting started
Your first test file
// test.js
const assert = require('assert');
const truthy = () => true;
suite('truthy', () => {
spec('should return true', () => {
assert.ok(truthy());
});
spec('should not return false', () => {
assert.notDeepEqual(truthy(), false);
});
});Your first test run
$ npx titef ./test.jsFor further information about writing and running tests in Titef take a look at Titef: Recipes to get up and running in no time.
οΏ½? Contributing
Contributors are well welcomed!
Here you'll find all the information you need to start to get going. A small preview:
