1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-01-13 22:42:02 +01:00
cheatsheets/nodejs-assert.md
2020-07-03 22:47:47 +10:00

293 B

title, category, layout
title category layout
assert Node.js 2017/sheet

Assertions

assert(val)
assert.equal(actual, expected)
assert.notEqual(a, e)
assert.deepEqual(a, e)
assert.notDeepEqual(a, e)
assert.throws(fn)

References