-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: parse junit report with message
- Loading branch information
Connor Monaghan
committed
Mar 11, 2025
1 parent
41662db
commit 70db77d
Showing
5 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
 | ||
|Report|Passed|Failed|Skipped|Time| | ||
|:---|---:|---:|---:|---:| | ||
|fixtures/junit-with-message.xml||1 ❌||1ms| | ||
## ❌ <a id="user-content-r0" href="#r0">fixtures/junit-with-message.xml</a> | ||
**1** tests were completed in **1ms** with **0** passed, **1** failed and **0** skipped. | ||
|Test suite|Passed|Failed|Skipped|Time| | ||
|:---|---:|---:|---:|---:| | ||
|[Test](#r0s0)||1 ❌||1ms| | ||
### ❌ <a id="user-content-r0s0" href="#r0s0">Test</a> | ||
``` | ||
Fails | ||
❌ Test | ||
error.cpp:01 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuites tests="1" failures="1" disabled="0" errors="0" time="0.001" name="Failure"> | ||
<testsuite name="Test" tests="6" failures="1" disabled="0" errors="0" time="0.001"> | ||
<testcase name="Test" status="run" time="0" classname="Fails"> | ||
<failure message="error" type=""><![CDATA[error.cpp:01 | ||
Expected: true | ||
Which is: false >]]></failure> | ||
</testcase> | ||
</testsuite> | ||
</testsuites> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters