1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-16 15:38:44 +02:00
cheatsheets/nodejs-assert.md
2015-11-24 15:48:01 +11:00

252 B

title, category
title category
assert Node.js
assert(val)
assert.equal(actual, expected)
assert.notEqual(a, e)

assert.deepEqual(a, e)
assert.notDeepEqual(a, e)

assert.throws(fn)

References