Skip to content

gabrielcsapo/tap-html

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

46 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

tap-html

๐Ÿ“Š an html tap reporter

Npm Version Build Status Coverage Status Dependency Status devDependency Status npm npm

Installation

npm install tap-html --save-dev

Usage

Usage: tap-html [options]

Commands:
  -h, --help, help                Output usage information
  -v, --version, version          Output the version number

Options:
  -o, --outFile [path]            If instead of piping content you want it to be written to an html file locally please specify the relative path

By default tap parser should be pipeable as such:

tape test/**.js | tap-html | html-cleanup > index.html

To generate a report running the following will create a file for you.

This will generate a tap-html.html file

tape test/**.js | tap-html --out ./tap-html.html