x/oak/test_deps.ts

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Very Popular
Go to Latest
function assertStrictEquals
import { assertStrictEquals } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v11.1.0/test_deps.ts?s=assertStrictEquals";

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

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

assertStrictEquals(1, 2)

Parameters

actual: unknown[src]
expected: T[src]
optional
msg: string
[src]

Returns

asserts actual is T[src]