1.0.7 • Published 5 years ago

testiz v1.0.7

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


Simple testing library with no excessive syntax.

Install

yarn install testiz --dev

Usage

// node
// const { log, ok, is, not } = require('testiz');

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


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

  log('failing tests');
  is('three is two', 3, 2);
  ok('null is ok', null);
}

tests();
# testiz
1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago