
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
The core assertion library for AVA
$ npm install --save ava-assert
const avaAssert = require('ava-assert');
avaAssert.is(1 + 1, 2);
.pass([message])
Passing assertion.
.fail([message])
Failing assertion.
.truthy(value, [message])
Assert that value
is truthy.
.falsy(value, [message])
Assert that value
is falsy.
.true(value, [message])
Assert that value
is true
.
.false(value, [message])
Assert that value
is false
.
.is(value, expected, [message])
Assert that value
is equal to expected
.
.not(value, expected, [message])
Assert that value
is not equal to expected
.
.deepEqual(value, expected, [message])
Assert that value
is deep equal to expected
.
.notDeepEqual(value, expected, [message])
Assert that value
is not deep equal to expected
.
.throws(function|promise, [error, [message]])
Assert that function
throws an error, or promise
rejects with an error.
error
can be a constructor, regex, error message or validation function.
Returns the error thrown by function
or the rejection reason of promise
.
.notThrows(function|promise, [message])
Assert that function
doesn't throw an error
or promise
resolves.
.regex(contents, regex, [message])
Assert that contents
matches regex
.
.notRegex(contents, regex, [message])
Assert that contents
does not match regex
.
.ifError(error, [message])
Assert that error
is falsy.
MIT © James Talmage
FAQs
The core assertion library for
The npm package ava-assert receives a total of 2 weekly downloads. As such, ava-assert popularity was classified as not popular.
We found that ava-assert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.