Usage in Deno
import * as mod from "node:assert";
The node:assert module provides a set of assertion functions for verifying
invariants.
Indicates the failure of an assertion. All errors thrown by the node:assert module will be instances of the AssertionError class.
Tests for deep equality between the actual and expected parameters.
"Deep" equality means that the enumerable "own" properties of child objects
are recursively evaluated also by the following rules.
Awaits the asyncFn promise or, if asyncFn is a function, immediately
calls the function and awaits the returned promise to complete. It will then
check that the promise is not rejected.
Throws an AssertionError with the provided error message or a default
error message. If the message parameter is an instance of an Error then
it will be thrown instead of the AssertionError.
Throws value if value is not undefined or null. This is useful when
testing the error argument in callbacks. The stack trace contains all frames
from the error passed to ifError() including the potential new frames for ifError() itself.
Tests strict inequality between the actual and expected parameters as
determined by Object.is().
Awaits the asyncFn promise or, if asyncFn is a function, immediately
calls the function and awaits the returned promise to complete. It will then
check that the promise is rejected.
Tests strict equality between the actual and expected parameters as
determined by Object.is().
In strict assertion mode, non-strict methods behave like their corresponding strict methods. For example, deepEqual will behave like deepStrictEqual.