Skip to content

shikaan/titef

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Titef logo

🌠 A tiny, lightning-fast, zero-dependecies JavaScript test framework 🌠

Build Status npm version

🎯 Why you should use it?

⚑ Unbelievably fast (check it here)

πŸ‘Œ ~2.9Kb (gzipped) of whatever you need in most of the cases

πŸ„ Close-to-zero migration effort from Mocha, Jasmine, Jest;

πŸ“– Lots of docs make it user and contributor friendly

πŸ“₯ Installation

npm install --save titef

πŸ‘“ Usage

npx titef test/awesome.specs.js

Older 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.js

For 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: