You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
7 years ago | |
---|---|---|
lib | 7 years ago | |
test | 7 years ago | |
.gitignore | 7 years ago | |
.travis.yml | 7 years ago | |
LICENSE | 7 years ago | |
README.md | 7 years ago | |
package.json | 7 years ago |
README.md
assert-extended 
A complimenting library for require('assert')
with a few more assertions being made available.
Installation
npm install assert-extended --save-dev
Usage
Add the following anywhere in your test:
require('assert-extended');
And you're good to go.
Assert
Including the default ones that come with assert
the following are added:
assert.notOk(value, message)
Asserts value is a falsy value.
assert.isFulfilled(promise, message)
Asserts that the promise is fulfilled.
assert.isRejected(promise, message)
Asserts that the promise is rejected.
assert.match(value, test, message)
Asserts that the value RexExp matches the test.