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

x/djwt/tests/test_deps.ts>assertEquals

Create and verify JSON Web Tokens (JWT) with Deno or the browser.
Very Popular
Go to Latest
function assertEquals
import { assertEquals } from "https://deno.land/x/djwt@v2.7/tests/test_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: unknown
expected: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string