Interface AutoTestRunIfStepInput

A step that controls if a it's children should run.

interface AutoTestRunIfStepInput {
    children?: AutoTestTestStepInput[];
    condition: AutoTestRunIfCondition;
    id?: string;
}

Properties

The children of this wrapper step.

The condition for that determines if the children should run.

id?: string

The id of this step.