Skip to main content
Module

x/httpcache/test_deps.ts>assertEquals

HTTP Caching for Deno - in memory and redis storage support. Inspired by the Service Worker Cache API.
Latest
function assertEquals
import { assertEquals } from "https://deno.land/x/httpcache@0.1.2/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:

assertEquals<number>(1, 2)

Parameters

actual: unknown
expected: unknown
optional
msg: string

Parameters

actual: T
expected: T
optional
msg: string