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

x/dtils/deps.ts>asserts.assertEquals

The best unofficial library of utilities for Deno applications
Go to Latest
function asserts.assertEquals
import { asserts } from "https://deno.land/x/dtils@1.6.2/deps.ts";
const { assertEquals } = asserts;

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

Type parameter can be specified to ensure values under comparison have the same type. For example:

import { assertEquals } from "./asserts.ts";

assertEquals<number>(1, 2)

Parameters

actual: T
expected: T
optional
msg: string