import { asserts } from "https://deno.land/x/dtils@1.6.2/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:
import { assertNotEquals } from "./asserts.ts";
assertNotEquals<number>(1, 2)