1
1
# tap-summary
2
- Summarize TAP.
3
-
4
2
[ ![ version] ( https://img.shields.io/npm/v/tap-summary.svg )] ( https://www.npmjs.org/package/tap-summary )
5
3
[ ![ status] ( https://travis-ci.org/zoubin/tap-summary.svg?branch=master )] ( https://travis-ci.org/zoubin/tap-summary )
6
4
[ ![ dependencies] ( https://david-dm.org/zoubin/tap-summary.svg )] ( https://david-dm.org/zoubin/tap-summary )
7
5
[ ![ devDependencies] ( https://david-dm.org/zoubin/tap-summary/dev-status.svg )] ( https://david-dm.org/zoubin/tap-summary#info=devDependencies )
8
6
9
- ## Usage
7
+ A reporter for TAP.
10
8
11
- ``` javascript
12
- var reporter = require (' tap-summary' )()
9
+ ## Example
13
10
14
- ```
11
+ ![ summary ] ( example/clip.gif )
15
12
16
- or in ` package.json `
13
+ ## Usage
17
14
15
+ ### package.json
18
16
``` json
19
17
{
20
18
"scripts" : {
@@ -30,6 +28,84 @@ or in `package.json`
30
28
--no-progress Disable progress output during tests
31
29
```
32
30
33
- ## Example
31
+ ### API
34
32
35
- ![ summary] ( example/clip.gif )
33
+ ``` js
34
+ var summarize = require (' tap-summary' )
35
+
36
+ var fs = require (' fs' )
37
+ fs .createReadStream (' test.tap' )
38
+ .pipe (summarize ({
39
+ ansi: true ,
40
+ progress: true ,
41
+ }))
42
+ .pipe (process .stdout )
43
+
44
+ ```
45
+
46
+ Also, the default formatter could be replaced with custom ones.
47
+
48
+ ``` js
49
+ var reporter = require (' tap-summary' ).reporter ()
50
+
51
+ var fs = require (' fs' )
52
+ fs .createReadStream (' test.tap' )
53
+ .pipe (customize (reporter))
54
+ .pipe (process .stdout )
55
+
56
+ ```
57
+
58
+ The ` reporter ` is a ` Duplex ` ,
59
+ which consumes the TAP input and output nothing by default.
60
+ However, it emits the following events during the process,
61
+ so that ` customize ` could listen to them and add something into the output.
62
+
63
+ * reporter.on('test.start', test => {}).
64
+ Fired when a new test detected.
65
+ * reporter.on('test.end', test => {}).
66
+ Fired when the end of a test reached.
67
+ * reporter.on('test.assert', (assertion, test) => {}).
68
+ Fired when a new assertion found.
69
+ * reporter.on('summary', (stats, fails, comments) => {}).
70
+ Fired when all TAP input has been processed.
71
+
72
+ Details about the ` test ` and ` assertion ` object could be found [ here] [ tap-out ] .
73
+
74
+ The ` stats ` object:
75
+ ``` js
76
+ var stats = {
77
+ // the total time (ms) it takes
78
+ duration: duration,
79
+ // the total number of assertions planned
80
+ planned: res .plans .reduce (function (p , c ) {
81
+ return c .to - c .from + 1 + p;
82
+ }, 0 ),
83
+ // the actual total number of assertions found
84
+ assertions: res .asserts .length ,
85
+ // the number of successful assertions
86
+ pass: res .pass .length ,
87
+ // the number of failed assertions
88
+ fail: res .fail .length ,
89
+ // the number of comments found
90
+ comments: res .comments .length ,
91
+ }
92
+
93
+ ```
94
+
95
+ ` fails ` will be ` null ` unless ` stats.fail > 0 ` :
96
+ ``` js
97
+ {
98
+ testName: [failedAssertion]
99
+ }
100
+
101
+ ```
102
+
103
+ ` comments ` will be ` null ` unless ` stats.comments > 0 ` :
104
+ ``` js
105
+ {
106
+ testName: [comment]
107
+ }
108
+
109
+ ```
110
+
111
+ [ tap-out ] : https://github.com/scottcorgan/tap-out
0 commit comments