Interface Runbook

interface Runbook {
    author?: string;
    debug?: boolean;
    description?: string;
    environment: EnvironmentDesktop | EnvironmentSaaS;
    props?: IProps;
    spec: Spec;
    version?: string;
}

Properties

author?: string

Author name

debug?: boolean

Emit debug messages

description?: string

Short description

props?: IProps
spec: Spec

The test specification

version?: string

version number of the document (e.g. 1, 1.1, 0.1.0, 1.2.1 etc.)