ptz-assert is a wrapper for npm assert
Be welcome to learn, help and play!!!
Install with npm:
$ npm install ptz-assert --save
or clone from github:
$ git clone https://github.com/angeloocana/ptz-assert.git
$ npm install
$ typings install
*Add to your typings/index.d.ts
/// <reference path="../node_modules/ptz-assert/src/typings/index.d.ts" />
$ npm test
import { ok, notOk, equal, notEqual, deepEqual, notDeepEqual, contains, notEmptyString, notEmptyArray, emptyArray } from "ptz-assert";
let obj = {test:"ok, i'm a valid obj"};
ok(obj);
//or test with optional message
ok(obj, msg);
var actual = 'ab';
var expected = 'ab';
equal(actual, expected);
var list = ['a', 'b'];
contains(list, 'a');