@skills17/test-result-printer
TypeScript icon, indicating that this package has built-in type declarations

2.2.0 • Public • Published

skills17/test-result-printer

Prints test results in a nice format to the console.

Table of contents

Installation

npm install @skills17/test-result-printer

Usage

A TestRun instance of the @skills17/test-result package can be passed to the Printer constructor.

import Printer from '@skills17/test-result-printer';

const printer = new Printer(testRun);
printer.print();

The result will be printed to the standard output.

Additionally, the print method supports an optional options parameter:

{
  // use a different printing function (defaults to console.log)
  printer?: (...data: string[]) => void;

  // if the header should be printed or not (defaults to true)
  printHeader?: boolean;

  // if the footer should be printed or not (defaults to false)
  printFooter?: boolean;

  // if points should be printed or not (defaults to true)
  printPoints?: boolean;
}

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @skills17/test-result-printer

Weekly Downloads

1

Version

2.2.0

License

MIT

Unpacked Size

10 kB

Total Files

7

Last publish

Collaborators

  • cyrilwanner
  • skills17
  • sebastianhaeni