zap-cdk
    Preparing search index...

    Interface ISpider

    Interface representing a spider configuration. ISpider

    interface ISpider {
        alwaysRun?: boolean;
        enabled?: boolean;
        parameters: ISpiderParameters;
        tests?: ISpiderTest[];
        type: "spider";
    }
    Index

    Properties

    alwaysRun?: boolean

    If set and the job is enabled, it will run even if the plan exits early, default: false.

    enabled?: boolean

    If set to false, the job will not be run, default: true.

    parameters: ISpiderParameters

    The parameters for the spider configuration.

    tests?: ISpiderTest[]

    List of tests to perform.

    type: "spider"

    The type of the spider.