๐ an html tap reporter
npm install tap-html --save-dev
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