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