Unit testing framework for javascript / Node.js.
Philosophy of Unit.js: modern, flexible, simple and intuitive.
Unit.js is an assertion library for Javascript, running on Node.js and in the browser. It works with any test runner and unit testing framework like Mocha, Jasmine, Karma, protractor (E2E test framework for Angular apps), QUnit, ... and more.
Unit.js provides an awesome API to write your unit tests in the way you prefer:
- + Unit.js (fluent style)
- + Assert (of Node.js)
- + Must.js
- + Should.js
- + Sinon.js
- + other friendly features.
Unit.js supports dependency injection and is extensible via a plugins system easy to use.
The learning curve to be productive with Unit.js is very short. The list of assertions is fully documented in the API doc and assertions are expressive like:
test.string('hello');
test.object(user).hasProperty('email');
test.array(fruit).hasValue('kiwi');
test.assert(myVar === true);
test.bool(myVar).isTrue();
Unit.js was designed to provide the essential tools for writing unit tests with fun and qualities.
- Unit.js documentation
- Unit.js introduction
- Quickstart
- Helpers
- Community support on the IRC channel #unit.js (freenode).
You can install Unit.js with NPM (Node Package Manager).
npm install unit.js
See quickstart in the guide.
const test = require('unit.js');
describe('Learning by the example', function(){
it('example variable', function(){
// just for example of tested value
const example = 'hello world';
test
.string(example)
.startsWith('hello')
.match(/[a-z]/)
.given(example = 'you are welcome')
.string(example)
.endsWith('welcome')
.contains('you')
.when('"example" becomes an object', function(){
example = {
message : 'hello world',
name : 'Nico',
job : 'developper',
from : 'France'
};
})
.then('test the "example" object', function(){
test
.object(example)
.hasValue('developper')
.hasProperty('name')
.hasProperty('from', 'France')
.contains({message: 'hello world'})
;
})
.if(example = 'bad value')
.error(function(){
example.badMethod();
})
;
});
it('other test case', function(){
// other tests ...
});
});
Result :
Unit.js provides a plugins system (based on Noder.io) for extending Unit.js's assertions and interfaces.
It is possible to create a package works easily as a plugin for Unit.js and also as a standalone module or library.
Also, it's useful for bundled the code to re-use easily across multiple projects or for a large application with its specific modules (by writing plugins to facilitate the unit tests of each module).
See plugins tutorial in the guide.
Unit.js supports dependency injection (Inversion Of Control).
See dependency-injection in the guide.
Unit.js integrates bluebird for handling asynchronous unit tests.
Bluebird is a fully featured promise library with focus on innovative features and performance.
Example:
const fs = test.promisifyAll(require('fs'));
it('async function', function(done) {
test
.promise
.given(anyAsyncFunction())
.then(function(contents) {
test.string(contents).contains('some value');
})
.catch(function(err){
test.fail(err.message);
})
.finally(done)
.done()
;
});
it('read file async', function(done) {
fs
.readFileAsync('./file.js', 'utf8')
.then(function(contents){
test.string(contents);
})
.catch(function(err){
test.fail(err.message);
})
.finally(done)
.done()
;
});
A light adjustment was added to write promise with BDD style:
test
.promise
.given(function() {
// ...
})
.when(function() {
// ...
})
.then(function() {
// ...
})
;
Unit.js should work with any framework (and runner) of unit tests. I tested Unit.js with Mocha and Jasmine, it works very well with these two runners.
For use Unit.js in an existing tests suite, you can write your new tests with Unit.js in your new files of unit tests.
For use Unit.js in an existing file of unit tests, you just have to load it with require('unit.js')
and use it like any assertion lib, example:
const test = require('unit.js');
// your old tests with your old assertion lib
// and your new tests with Unit.js
The API of Unit.js is fanatically documented with examples for all assertions.
- API doc : the API of all asserters.
- spec : the spec of all asserters.
- guide : several tutorials to learn the unit testing with Unit.js.
- Unit.js Introduction
- Unit.js Quickstart
Takes a little time to learn (see UnitJS.com) with the tutorials in the guide, the API doc and looking at the many examples of codes in the spec doc and unit tests examples.
You are operational and productive from the outset. The style of writing your unit tests is not imposed, it depends on your preferences. Unit.js is flexible enough to fit your coding style without effort on your part.
The mastery of Unit.js is very fast, especially if you already know one of the libraries of assertions (Assert of Node.js, Shoud.js, Must.js, Sinon.js, Atoum).
Useful snippets for code editor:
Unit.js is released under a Lesser GNU Affero General Public License, which in summary means:
- You can use this program for no cost.
- You can use this program for both personal and commercial reasons.
- You do not have to share your own program's code which uses this program.
- You have to share modifications (e.g bug-fixes) you've made to this program.
For more convoluted language, see the LICENSE.
Unit.js is designed and built with love by
Nicolas Talle |