๐Ÿ’ฌVerboseReporter

Drown yourself in verbosity.

This reporter outputs a lot of information, including:

  • All Test Groups and Test Names for each test

  • RTrace Info (reference allocations vs deallocations)

  • Performance Statistics (this will be deprecated!)

  • Logging Information

It can be used directly from the configuration file.

const { VerboseReporter } = require("@as-pect/core");

module.exports = {
  reporter: new VerboseReporter(),
};

It can also be used from the cli using the --verbose flag.

npx asp --verbose

Last updated