2.3.2 ā€¢ Published 4 years ago

titef v2.3.2

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

šŸŽÆ 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:

2.3.2

4 years ago

2.3.1

4 years ago

2.3.0

4 years ago

2.2.2

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1-rc1

6 years ago

1.0.1-alpha9

6 years ago

1.0.1-alpha8

6 years ago

1.0.1-alpha7

6 years ago

1.0.1-alpha6

6 years ago

1.0.1-alpha5

6 years ago

1.0.1-alpha4

6 years ago

1.0.1-alpha2

6 years ago

1.0.1-alpha1

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.1-beta5

6 years ago

0.0.1-beta4

6 years ago

0.0.1-beta3

6 years ago

0.0.1-beta1

6 years ago

0.0.1-alpha10

6 years ago

0.0.1-alpha9

6 years ago

0.0.1-alpha7

6 years ago

0.0.1-alpha1

6 years ago

0.0.1

6 years ago