assertive
assertive copied to clipboard
Assertive is a terse yet expressive assertion library
Results
12
assertive issues
Sort by
recently updated
recently updated
newest added
Maybe I was missing something: ``` js var assert = require('assertive'); function MyClass() { }; var inst = new MyClass(); assert.truthy(inst instanceof MyClass); assert.hasType(MyClass, inst); ``` Running it gives me:...
``` coffee assert.deepEqual { x: 42 }, { x: 42, y: undefined } ``` ``` Error: deepEqual {"x":42} failed on something that serializes to the same result (likely some function)...