📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: README.md
# 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')) ```
Save