Member Junction
    Preparing search index...

    The outcome of one matcher, kept per-parameter so param fidelity aggregates without a re-run.

    interface ParamMatchResult {
        detail?: string;
        matcherKind:
            | "exact"
            | "nonEmptyString"
            | "nonEmpty"
            | "containsIgnoreCase"
            | "oneOf"
            | "regex"
            | "numberRange"
            | "typeOf"
            | "absent";
        param: string;
        passed: boolean;
    }
    Index

    Properties

    detail?: string

    Why it failed, phrased for a human reading a test report.

    matcherKind:
        | "exact"
        | "nonEmptyString"
        | "nonEmpty"
        | "containsIgnoreCase"
        | "oneOf"
        | "regex"
        | "numberRange"
        | "typeOf"
        | "absent"
    param: string
    passed: boolean