Skip to main content
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function assertObjectMatch
Deprecated
Deprecated

(will be removed after 1.0.0) Import from https://deno.land/std/assert/assert_object_match.ts instead.

import { assertObjectMatch } from "https://deno.land/std@0.218.0/testing/asserts.ts";

Make an assertion that actual object is a subset of expected object, deeply. If not, then throw.

Examples

Example 1

import { assertObjectMatch } from "https://deno.land/std@0.218.0/testing/asserts.ts";

assertObjectMatch({ foo: "bar" }, { foo: "bar" }); // Doesn't throw
assertObjectMatch({ foo: "bar" }, { foo: "baz" }); // Throws

Parameters

actual: Record<PropertyKey, any>
expected: Record<PropertyKey, unknown>
optional
msg: string