Interface: ConsoleReporterOptions

ConsoleReporterOptions

Members

color :Boolean|undefined

Whether to colorize the output

The color option should only be specified if the user has explicitly requested to enable or disable color. If set to something other than undefined, it takes precedence over the NO_COLOR environment variable.

The color option is ignored if stdout is not a TTY.

Type:
  • Boolean | undefined
Default Value:
  • undefined

randomSeedReproductionCmd :function|undefined

A function that takes a random seed and returns the command to reproduce that seed. Use this to customize the output when using ConsoleReporter in a different command line tool.

Type:
  • function | undefined