import { asserts } from "https://deno.land/x/merlin@v1.0.7/deps.ts";
const { assertStrictEquals } = asserts;
Make an assertion that actual
and expected
are strictly equal. If
not then throw.
assertStrictEquals(1, 2)
import { asserts } from "https://deno.land/x/merlin@v1.0.7/deps.ts";
const { assertStrictEquals } = asserts;
Make an assertion that actual
and expected
are strictly equal. If
not then throw.
assertStrictEquals(1, 2)