Viv JavaScript Runtime - v0.10.2
    Preparing search index...

    Interface ConditionResultCounts

    An object recording for a given condition its number of successes and failures (across tests of the condition).

    interface ConditionResultCounts {
        condition: string;
        failures: number;
        successes: number;
    }
    Index

    Properties

    condition: string

    The original source code for this condition.

    failures: number

    The number of times this condition failed.

    successes: number

    The number of times this condition succeeded.