Arize Phoenix TS
    Preparing search index...

    Options that control how the reporter renders. Resolved once per run from the environment and the output stream (see resolveRenderOptions) and then threaded through every formatting function so jest and vitest behave identically without either reporter class needing options of its own.

    interface RenderOptions {
        color: boolean;
        maxRows: number;
        maxWidth: number;
        verbose: boolean;
    }
    Index

    Properties

    color: boolean

    Emit ANSI color escapes.

    maxRows: number

    Max test rows shown per suite in compact mode (failures are never hidden).

    maxWidth: number

    Terminal width budget used to size tables.

    verbose: boolean

    Show every test row plus the legacy per-test output: detail block.