Skip to main content
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function assertEquals
import { assertEquals } from "https://deno.land/std@0.113.0/testing/asserts.ts";

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: unknown
expected: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string

Parameters

actual: unknown
expected: unknown
optional
msg: string