Skip to main content
Module

std/node/assert.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.80.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.