Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/earthstar_streaming_rpc/src/test/asserts.ts>assertIsError

Like JSON-RPC, but supports streaming.
Latest
function assertIsError
import { assertIsError } from "https://deno.land/x/earthstar_streaming_rpc@v5.0.1/src/test/asserts.ts";

Make an assertion that error is an Error. If not then an error will be thrown. An error class and a string that should be included in the error message can also be asserted.

Type Parameters

optional
E extends Error = Error

Parameters

error: unknown
optional
ErrorClass: new (...args: any[]) => E
optional
msgIncludes: string
optional
msg: string

Returns

asserts error is E