@suluk/journeys - v0.4.0
    Preparing search index...

    Interface Scenario

    interface Scenario {
        name: string;
        rule?: string;
        steps: FeatureStep[];
        line: number;
        tags?: string[];
        examples?: { headers: string[]; rows: string[][]; tags?: string[] };
    }
    Index

    Properties

    name: string
    rule?: string

    the Rule: this scenario sits under, if any.

    steps: FeatureStep[]
    line: number
    tags?: string[]

    tags on this scenario (the leading @ stripped), e.g. ["public"].

    examples?: { headers: string[]; rows: string[][]; tags?: string[] }

    the captured Examples: table of a Scenario Outline (C040-P1); absent for a plain Scenario. tags are from a @public-style line directly above the Examples: keyword (C040-P4 promote selection).