Type Alias FunctionWithContextTestCaseSingleInput<FunctionToTest>

FunctionWithContextTestCaseSingleInput: { input: Parameters<FunctionToTest>[1] } & BaseTestCase<
    Awaited<ReturnType<FunctionToTest>>,
>

Input for a test function with context that only has a single input.

Type Parameters