x/oak/test_deps.ts

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Very Popular
Go to Latest
function assertRejects
import { assertRejects } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v11.1.0/test_deps.ts?s=assertRejects";

Executes a function which returns a promise, expecting it to reject.

Parameters

fn: () => PromiseLike<unknown>[src]
optional
msg: string
[src]

Returns

Promise<unknown>[src]

Executes a function which returns a promise, expecting it to reject. If it does not, then it throws. 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
[src]

Parameters

fn: () => PromiseLike<unknown>[src]
ErrorClass: new (...args: any[]) => E[src]
optional
msgIncludes: string
[src]
optional
msg: string
[src]

Returns

Promise<E>[src]

Parameters

fn: () => PromiseLike<unknown>[src]
errorCallback: (e: Error) => unknown[src]
optional
msg: string
[src]

Returns

Promise<Error>[src]