Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/merlin/deps.ts>asserts.assertNotEquals

Testing and Benchmarking framework for deno 🧙‍♂️
Latest
function asserts.assertNotEquals
import { asserts } from "https://deno.land/x/merlin@v1.0.7/deps.ts";
const { assertNotEquals } = asserts;

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

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

assertNotEquals<number>(1, 2)

Parameters

actual: unknown
expected: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string