Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hex/src/fp/tests/deps.ts>asserts.assertStrictEquals

An ecosystem delivering practices, philosophy and portability.
Go to Latest
function asserts.assertStrictEquals
import { asserts } from "https://deno.land/x/hex@0.5.15/src/fp/tests/deps.ts";
const { assertStrictEquals } = asserts;

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

import { assertStrictEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";

assertStrictEquals(1, 2)

Parameters

actual: unknown
expected: T
optional
msg: string

Returns

asserts actual is T