Skip to main content
Module

x/retry/dev_deps.ts>assertEquals

Re-execute a function until it does not throw an error or execute a function with a timeout.
Very Popular
Latest
function assertEquals
import { assertEquals } from "https://deno.land/x/retry@v2.0.0/dev_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:

assertEquals<number>(1, 2)

Parameters

actual: unknown
expected: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string