Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/scottcorgan/tap-dot

Formatted TAP output with dots ...
https://github.com/scottcorgan/tap-dot

Last synced: 3 days ago
JSON representation

Formatted TAP output with dots ...

Awesome Lists containing this project

README

        

# tap-dot ![NPM version](https://img.shields.io/npm/v/tap-dot.svg?style=flat-square) ![NPM download count](https://img.shields.io/npm/dm/tap-dot.svg?style=flat-square)

Formatted TAP output with dots ...

**Passed tests**

![Passed tests](https://i.cloudup.com/NUrIyLYHct.png)

**Failed tests**

![Failed tests](https://i.cloudup.com/70SmvILs9I.png)

## Install

```
npm install tap-dot --save-dev
```

## Usage

**package.json**

```json
{
"name": "module-name",
"scripts": {
"test": "node ./test/tap-test.js | tap-dot"
}
}
```

Then run with `npm test`

**Terminal**

```
tape test/index.js | node_modules/.bin/tap-dot
```

**Testling**

```
npm install testling -g
testling test/index.js | node_modules/.bin/tap-dot
```