@testream/mocha-reporter 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/reporter.d.ts +5 -2
- package/dist/source-snippets.d.ts +11 -0
- package/dist/types.d.ts +2 -2
- package/dist/uploader.d.ts +2 -2
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -19,4 +19,8 @@ module.exports = {
|
|
|
19
19
|
};
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
+
The reporter also captures the Mocha test body's source text at runtime, so
|
|
23
|
+
generated CTRF reports include `snippet` even when explicit line metadata is
|
|
24
|
+
not available.
|
|
25
|
+
|
|
22
26
|
Need more configuration options? See the full guide at https://docs.testream.app/reporters/mocha.
|
package/dist/index.d.ts
CHANGED