mirror of
https://github.com/rstacruz/cheatsheets.git
synced 2026-04-27 03:00:45 -04:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
26 lines
274 B
Markdown
26 lines
274 B
Markdown
---
|
|
title: assert
|
|
category: Node.js
|
|
---
|
|
|
|
### Assertions
|
|
|
|
```js
|
|
assert(val)
|
|
assert.equal(actual, expected)
|
|
assert.notEqual(a, e)
|
|
```
|
|
|
|
```js
|
|
assert.deepEqual(a, e)
|
|
assert.notDeepEqual(a, e)
|
|
```
|
|
|
|
```js
|
|
assert.throws(fn)
|
|
```
|
|
|
|
### References
|
|
|
|
- http://nodejs.org/api/assert.html
|