Module

x/bdd/mod.ts>assertStrictEquals

A Behaviour-Driven Development Testing Framework for Deno
Latest
function assertStrictEquals
import { assertStrictEquals } from "https://dotland.deno.dev/x/bdd@v0.2/mod.ts";

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

assertStrictEquals(1, 2)

Parameters

actual: T
expected: T
optional
msg: string