zap-cdk
    Preparing search index...

    Interface ITest

    Interface representing a test configuration. ITest

    interface ITest {
        name: string;
        onFail?: "warn" | "error" | "info";
        operator: string;
        statistic: string;
        type: "stats";
        value: number;
    }
    Index

    Properties

    name: string

    Name of the test.

    onFail?: "warn" | "error" | "info"

    Action to take on failure.

    operator: string

    Operator used for testing.

    statistic: string

    Name of an integer / long statistic.

    type: "stats"

    Type of test, only 'stats' is supported for now.

    value: number

    Value to compare against.