x/oak/test_deps.ts

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

Executes a function, expecting it to throw. If it does not, then it throws.

Parameters

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

Executes a function, expecting it to throw. 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: () => unknown[src]
ErrorClass: new (...args: any[]) => E[src]
optional
msgIncludes: string
[src]
optional
msg: string
[src]

Parameters

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