Interface IRunEnvironment

Contextual data about the project environment

interface IRunEnvironment {
    cwd?: string;
    debug?: boolean;
    env?: ProcessEnv;
    stderr?: Writable;
    stdout?: Writable;
}

Properties

cwd?: string

Working directory for the project

Default

process.cwd()
debug?: boolean

Whether debug logging should be emitted to IRunEnvironment.stderr

env?: ProcessEnv

Environment variables

Default

process.env
stderr?: Writable

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

Default

process.stderr
stdout?: Writable

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

Default

process.stdout

Generated using TypeDoc