Skip to main content
Go to Latest
function notDeepStrictEqual
Re-export
import { notDeepStrictEqual } from "https://deno.land/std@0.80.0/node/assert.ts";

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