Interface ITestEventHandlerContextExpectations

Expectations for a test response.

interface ITestEventHandlerContextExpectations {
    body: any;
    headers: Record<string, string | RegExp>;
    status: number;
}

Properties

Properties

body: any

The body.

headers: Record<string, string | RegExp>

Headers.

status: number

The status code.

Generated using TypeDoc