1.0.3 • Published 4 years ago

testfu v1.0.3

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


Simple testing library with no excessive syntax.

Install

yarn add testfu --dev

Usage

// node
// const chalk = require('chalk');
// const { testf } = require('./testf');
// const { nodeOptions } = require('./testf');
// const { log, is, array_is } = testf(nodeOptions(chalk));


// browser
import { log, is, array_is } from 'testiz;


function tests() {
  log('passing tests');
  ok('true is ok', true);
  is('three is three', 3, 3);

  log('failing tests');
  is('three is two', 3, 2);
  ok('null is ok', null);
  array_is('not equal', [1,2], [2,3,4]);

}

tests();
# testf
1.0.2

4 years ago

1.0.3

4 years ago

1.0.0

4 years ago