rest-vir - v2.2.0
    Preparing search index...

    Type Alias EndpointTestCase<Endpoint, Method, HostContext, TestParams, Output>

    EndpointTestCase: Readonly<
        {
            expect: Output;
            input: | IndividualEndpointTestInputs<NoInfer<Endpoint>, NoInfer<Method>>
            | IndividualEndpointTestCallback<
                NoInfer<Endpoint>,
                NoInfer<Method>,
                TestParams,
            >;
            it: string;
        } & PartialWithUndefined<
            {
                createHostContext: TestCreateHostContext<HostContext, TestParams>;
                createTestParams: CreateEndpointCaseTestParams<TestParams>;
                only: boolean;
                skip: boolean;
                useFullResponse: boolean;
            },
        >,
    >

    Type Parameters