Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 266 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 266 Bytes

assert.js

Micro unit test framework for JS

//some examples
Assert.assert(typeof window === 'object', 'No window?' + typeof window);
Assert.that(true === true, 'Clearly true');
Assert.type('Boolean', true);
Assert.equals(true, true);