vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface DeploymentSpecExecuteOptions<TArgs>

    interface DeploymentSpecExecuteOptions<TArgs extends unknown[] = unknown[]> {
        args: [...TArgs[]];
        errorSeverity?: "error" | "warn";
        ignoreErrors?: boolean;
    }

    Type Parameters

    • TArgs extends unknown[] = unknown[]
    Index

    Properties

    args: [...TArgs[]]

    Arguments passed to the spec function for execution

    errorSeverity?: "error" | "warn"

    Determines the severity of spec function errors; if set to 'error' record will be marked as failed, if set to 'warn' the record will be marked as successful but a warning will be logged.

    ignoreErrors?: boolean

    If true, errors will be ignored and the deployment will continue