@testream/dotnet-reporter 1.1.1 → 1.2.0
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 +2 -0
- package/dist/index.js +898 -24
- package/dist/index.js.map +1 -1
- package/dist/source-snippets.d.ts +26 -0
- package/dist/source-snippets.d.ts.map +1 -0
- package/dist/trx-parser.d.ts.map +1 -1
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -22,5 +22,7 @@ Run .NET tests and send the results from your codebase to Jira via Testream.
|
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
This installs the reporter, runs your .NET tests, and uploads results to Testream.
|
|
25
|
+
When TRX metadata includes source file paths, the reporter also enriches CTRF
|
|
26
|
+
tests with bounded C# method snippets from the corresponding `.cs` files.
|
|
25
27
|
|
|
26
28
|
For CLI options and CI examples, see https://docs.testream.app/reporters/dotnet.
|