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

This will be removed in 1.0.0. Import from https://deno.land/std/assert/assert_object_match.ts instead.

import { assertObjectMatch } from "https://deno.land/std@0.224.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.224.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