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

x/actionify/tests/deps.ts>assertEquals

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

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

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

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

assertEquals<number>(1, 2)

Parameters

actual: T
expected: T
optional
msg: string