Module

x/justaos/test.deps.ts>assertStrictEquals

A command line interface for justaos
Latest
function assertStrictEquals
import { assertStrictEquals } from "https://dotland.deno.dev/x/justaos@v0.1.3/test.deps.ts";

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

import { assertStrictEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts";

assertStrictEquals(1, 2)

Parameters

actual: unknown
expected: T
optional
msg: string

Returns

asserts actual is T