@cucumber/cucumber
    Preparing search index...

    Interface IRunOptionsPlugins

    Options relating to plugins - which ones to use and how they should behave

    interface IRunOptionsPlugins {
        options: JsonObject;
        specifiers: string[];
    }
    Index

    Properties

    Properties

    options: JsonObject

    Options to be provided to plugins

    The value must be a JSON-serializable object.

    specifiers: string[]

    Specifiers of plugins to load

    [
    "@cucumber/my-plugin",
    "./custom-plugin.js"
    ]

    Each item is a module specifier for a plugin to be loaded.