You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@ Even though JavaScript is single-threaded, IO in Node.js can happen in parallel
33
33
-[Async function support](#async-function-support)
34
34
-[Observable support](#observable-support)
35
35
-[Enhanced asserts](#enhanced-asserts)
36
+
-[Optional TAP output](#optional-tap-output)
36
37
37
38
38
39
## Test syntax
@@ -105,6 +106,7 @@ $ ava --help
105
106
--fail-fast Stop after first test failure
106
107
--serial Run tests serially
107
108
--require Module to preload (Can be repeated)
109
+
--tap Generate TAP output
108
110
109
111
Examples
110
112
ava
@@ -456,6 +458,16 @@ test.cb(t => {
456
458
});
457
459
```
458
460
461
+
### Optional TAP output
462
+
463
+
AVA can generate TAP output via `--tap` option for use with any [TAP reporter](https://github.com/sindresorhus/awesome-tap#reporters).
0 commit comments