import { assertObjectMatch } from "https://deno.land/std@0.222.0/assert/mod.ts";
Make an assertion that actual
object is a subset of expected
object,
deeply. If not, then throw.
Examples
Example 1
Example 1
import { assertObjectMatch } from "https://deno.land/std@0.222.0/assert/assert_object_match.ts";
assertObjectMatch({ foo: "bar" }, { foo: "bar" }); // Doesn't throw
assertObjectMatch({ foo: "bar" }, { foo: "baz" }); // Throws