Skip to main content
Go to Latest
interface testing.MockContextOptions
import { type testing } from "https://deno.land/x/oak_sessions@v4.0.0/deps.ts";
const { MockContextOptions } = testing;

Options that can be set in a mock context.

Type Parameters

R extends string
optional
P extends RouteParams<R> = RouteParams<R>
optional
S extends State = Record<string, any>

Properties

optional
app: Application<S>
optional
ip: string
optional
method: string
optional
params: P
optional
path: string
optional
state: S
optional
headers: [string, string][]