Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tap-dancer

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tap-dancer

a quick human-readable test-reporter for Tap

  • 0.3.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

like tap-dot, but with more information about failures, and where to find them.

based on am-tap-dot by amokrushin. (Thanks!)

image


image

# local
npm i tap-dancer --save-dev

# global
npm i tap-dancer -g

API

const test = require('tape')
const TapDance = require('tap-dancer')

test
  .createStream()
  .pipe(new TapDance())
  .pipe(process.stdout)

Command-line

tape test/index.js | node_modules/.bin/tap-dancer --color

or in package.json,

{
  "name": "module-name",
  "scripts": {
    "test": "node ./test/tap-test.js | tap-dancer --color"
  }
}

Then run with npm test

Options

-nofail - always return an arror code of 0, even when tests pass node ./tap-test.js | tap-dancer -nofail

-noreport - don't list-out all the mistakes. node ./tap-test.js | tap-dancer -noreport

MIT

Keywords

FAQs

Package last updated on 09 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc