Skip to main content
Module

x/test_suite/test_deps.ts>assertEquals

An extension of Deno's built-in test runner to add setup/teardown hooks and make it easier to organize tests in a format similar to Jasmine, Jest, and Mocha.
Latest
function assertEquals
import { assertEquals } from "https://deno.land/x/test_suite@0.16.1/test_deps.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