Skip to content

Commit a68277c

Browse files
Yves Darmaillacljharb
Yves Darmaillac
authored andcommitted
[readme] Another way to create custom reporters
1 parent 021fa6d commit a68277c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

readme.markdown

+14
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,20 @@ $ node object.js test/x.js test/y.js
447447
{"type":"end","test":2}
448448
```
449449

450+
A convenient alternative to achieve the same:
451+
```js
452+
// report.js
453+
var test = require('tape');
454+
455+
test.createStream({ objectMode: true }).on('data', function (row) {
456+
console.log(JSON.stringify(row)) // for example
457+
});
458+
```
459+
and then:
460+
```sh
461+
$ tape -r ./report.js **/*.test.js
462+
```
463+
450464
# install
451465

452466
With [npm](https://npmjs.org) do:

0 commit comments

Comments
 (0)