Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/actionify/tests/deps.ts>assertNotStrictEquals

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
function assertNotStrictEquals
import { assertNotStrictEquals } from "https://deno.land/x/actionify@0.3.0/tests/deps.ts";

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

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

assertNotStrictEquals(1, 1)

Parameters

actual: T
expected: T
optional
msg: string