Interface ITestResponseValidatorContext

Context for a TestResponseValidator function.

interface ITestResponseValidatorContext {
    body: Buffer;
    headers: Record<string, string>;
    status: number;
}

Properties

Properties

body: Buffer

The raw body.

headers: Record<string, string>

The response headers.

status: number

The status code.

Generated using TypeDoc