Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/molt/lib/std/assert.ts>assertObjectMatch

Update dependencies the Deno way
Latest
function assertObjectMatch
import { assertObjectMatch } from "https://deno.land/x/molt@0.17.2/lib/std/assert.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/assert/assert_object_match.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