function assertObjectMatch
assertObjectMatch(): voidDeprecated
(will be removed after 1.0.0) Import from https://deno.land/std/assert/assert_object_match.ts instead.
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 "@std/testing/asserts"; assertObjectMatch({ foo: "bar" }, { foo: "bar" }); // Doesn't throw assertObjectMatch({ foo: "bar" }, { foo: "baz" }); // Throws
Parameters
Return Type
void