Files
cheatsheets/nodejs-assert.md
Rico Sta. Cruz 511de900ba Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

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