mirror of
https://github.com/rstacruz/cheatsheets.git
synced 2026-04-27 03:00:45 -04:00
18 lines
252 B
Markdown
18 lines
252 B
Markdown
---
|
|
title: assert
|
|
category: Node.js
|
|
---
|
|
|
|
assert(val)
|
|
assert.equal(actual, expected)
|
|
assert.notEqual(a, e)
|
|
|
|
assert.deepEqual(a, e)
|
|
assert.notDeepEqual(a, e)
|
|
|
|
assert.throws(fn)
|
|
|
|
### References
|
|
|
|
- http://nodejs.org/api/assert.html
|