mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2026-01-13 22:42:02 +01:00
293 B
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)