Member Junction
    Preparing search index...

    Override settings for a variable at the test level

    interface TestVariableOverride {
        defaultValue?: string | number | boolean | Date;
        exposed: boolean;
        locked?: boolean;
        restrictedValues?: (string | number | boolean)[];
    }
    Index

    Properties

    defaultValue?: string | number | boolean | Date

    Override the default value for this test

    exposed: boolean

    Whether this variable is exposed for this test. If false, the variable is not available for override.

    locked?: boolean

    If true, this variable cannot be overridden at suite/run level

    restrictedValues?: (string | number | boolean)[]

    Restrict possible values to a subset of the type's values