Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/earthstar/src/test/asserts.ts>assertObjectMatch

A specification and Javascript library for building online tools you can truly call your own.
Go to Latest
function assertObjectMatch
import { assertObjectMatch } from "https://deno.land/x/earthstar@v9.3.3/src/test/asserts.ts";

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

Parameters

actual: Record<PropertyKey, any>
expected: Record<PropertyKey, unknown>