Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/node/assert.ts

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
import * as mod from "https://deno.land/std@0.82.0/node/assert.ts";

Functions

Make an assertion that actual and expected are equal, deeply. If not deeply equal, then throw.

Forcefully throws a failed assertion

Make an assertion that actual match RegExp expected. If not then thrown

Make an assertion that actual and expected are not equal, deeply. If not then throw.

Make an assertion that actual and expected are not strictly equal. If the values are strictly equal then throw.

Make an assertion that actual and expected are strictly equal. If not then throw.

Executes a function, expecting it to throw. If it does not, then it throws. An error class and a string that should be included in the error message can also be asserted.