Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calvinmetcalf/tap-nyan
tap -> nyan
https://github.com/calvinmetcalf/tap-nyan
Last synced: 13 days ago
JSON representation
tap -> nyan
- Host: GitHub
- URL: https://github.com/calvinmetcalf/tap-nyan
- Owner: calvinmetcalf
- Created: 2014-03-25T19:58:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-05-06T05:04:42.000Z (over 5 years ago)
- Last Synced: 2024-10-17T21:34:02.541Z (22 days ago)
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 146
- Watchers: 3
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-tap - tap-nyan - Nyan cat. (Reporters / JavaScript)
README
# tap-nyan
NYAN TAP output ~~inspired by~~ blatantly copied from Mocha's [nyan reporter](https://github.com/visionmedia/mocha/blob/master/lib/reporters/nyan.js) with much tap material taken from Scott Corgan's awesome [tap-spec reporter](https://github.com/scottcorgan/tap-spec). Very rough at the moment.
![screen shot](http://i.imgur.com/T1eH156.png)
**Colors**
The Nyan cat color scheme will automatically be downgraded to ANSI on terminals
that doesn't support 256 colors.For CLI color options see the [supports-color](https://github.com/chalk/supports-color#info) module.
## Install
```
npm install tap-nyan --save-dev
```## Usage
**packge.json**
```json
{
"name": "module-name",
"scripts": {
"test": "node ./test/tap-test.js | tnyan"
}
}
```Then run with `npm test`
**Terminal**
```
node test/test.js | node_modules/.bin/tnyan
```**Testling**
```
npm install testling -g
testling test/test.js | node_modules/.bin/tnyan
```