tap-dot
Version:
Formatted TAP output with dots ...
47 lines (30 loc) • 739 B
Markdown
# tap-dot  
Formatted TAP output with dots ...
**Passed tests**

**Failed tests**

## 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
```