0.2.2 • Published 6 years ago
node-tee v0.2.2
NodeTee
Simple test runner for Nodejs projects.
Instruction
Define test with Tee
const {Tee} = require('node-tee');
const myTee = Tee.new('Controller x');
myTee.case('Controller should pass', () => {
assert(true, true);
});
module.exports = myTee;
Register Tee
in Pot
const {Pot} = require('node-tee');
const myTee = require('./myTee.path.js');
const myPot = Pot.new('My App');
myPot.register([myTee]);
myPot.run();
expect
case
method callback provide expect functionality
myTee('Controller', (expect) => {
expect(true).toBe(true);
expect(true).toBeTruthy();
expect(false).toBeFalsy();
})