Go to repository

Interface MatcherCall

A matcher call represents a call to a matcher with it's corresponding arguments and the actual result.

interface MatcherCall {
    args: unknown[];
    matcher: string;
    result: boolean;
}

Properties

Properties

args: unknown[]
matcher: string
result: boolean