tap-nyc is a TAP output formatter designed to pair seamlessly with nyc (Istanbul's CLI coverage tool) and the Tape testing framework. Version 1.0.3 is the current stable release; no longer actively developed. It formats TAP output into a clean summary, suppressing verbose details on success and showing failures inline. Unlike standard TAP formatters (e.g., tap-spec, faucet), tap-nyc avoids errors and overlapping output with nyc's coverage report, providing a minimal view when tests pass.
npm install tap-nycNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Installs tap-nyc as a dev dependency and sets up a test script that runs Tape tests with nyc coverage, piping TAP output to tap-nyc for formatted output.
Ensure you pipe a TAP-producing command (e.g., `nyc tape tests/*.js | tap-nyc`).
Use `--nyc-output` flag if you need to see nyc's coverage report separate from TAP summary.
Consider alternatives like `tap` with built-in coverage or `tap-dot` with nyc.
Ensure it's installed locally (`npm install --save-dev tap-nyc`) and reference it via npx: `npx tap-nyc` or use the package.json script.
Use tap-nyc as a command-line tool only. No require() needed.
No dependency data recorded yet.