@cucumber/cucumber
    Preparing search index...

    Interface IRunEnvironment

    Contextual data about the project environment

    interface IRunEnvironment {
        cwd?: string;
        debug?: boolean;
        env?: Record<string, string>;
        stderr?: Writable;
        stdout?: Writable;
    }
    Index

    Properties

    cwd?: string

    Working directory for the project

    process.cwd()
    
    debug?: boolean

    Whether debug logging should be emitted to IRunEnvironment.stderr

    env?: Record<string, string>

    Environment variables

    process.env
    
    stderr?: Writable

    Writable stream where the test run's warning/error output is written

    process.stderr
    
    stdout?: Writable

    Writable stream where the test run's main formatter output is written

    process.stdout