@cucumber/core
    Preparing search index...

    Interface AssembledTestPlan

    A test plan comprised of assembled test cases from a document

    interface AssembledTestPlan {
        name?: string;
        testCases: readonly AssembledTestCase[];
        toEnvelopes(): readonly Envelope[];
    }
    Index

    Properties

    Methods

    Properties

    name?: string

    A non-unique name for this test plan

    This will be the feature name, or else the URI of the document, or else omitted.

    testCases: readonly AssembledTestCase[]

    An ordered array of test cases to be executed in this plan

    Methods

    • Produces a list of Cucumber Messages envelopes for the test plan

      Returns readonly Envelope[]