Skip to main content
Module

x/test_suite/test_deps.ts>assertStrictEquals

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 assertStrictEquals
import { assertStrictEquals } from "https://deno.land/x/test_suite@0.16.1/test_deps.ts";

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

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

assertStrictEquals(1, 2)

Parameters

actual: unknown
expected: T
optional
msg: string

Returns

asserts actual is T