mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-17 14:57:09 +01:00
Report jest-junit testsuite errors as failures
Test errors are different (represented differently in the JUnit XML output from jest-junit) to test _failures_. Failures are tests which ran and failed, errors are for tests/test suites which did not even run because the test code itself didn't build or didn't execute correctly. jest-junit has an option to enable reporting of test suite errors, but test-reporter then interprets these as successful tests.
This commit is contained in:
parent
0d00bb14cb
commit
fe8fe90f0e
9 changed files with 286 additions and 105 deletions
19
__tests__/__outputs__/jest-test-errors-results.md
Normal file
19
__tests__/__outputs__/jest-test-errors-results.md
Normal file
|
|
@ -0,0 +1,19 @@
|
|||

|
||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/test-errors/jest/jest-test-results.xml</a>
|
||||
**2** tests were completed in **646ms** with **0** passed, **2** failed and **0** skipped.
|
||||
|Test suite|Passed|Failed|Skipped|Time|
|
||||
|:---|---:|---:|---:|---:|
|
||||
|[libs/bar.spec.ts](#r0s0)||1❌||0ms|
|
||||
|[libs/foo.spec.ts](#r0s1)||1❌||0ms|
|
||||
### ❌ <a id="user-content-r0s0" href="#r0s0">libs/bar.spec.ts</a>
|
||||
```
|
||||
Test suite failed to run
|
||||
❌ libs/bar.spec.ts
|
||||
● Test suite failed to run
|
||||
```
|
||||
### ❌ <a id="user-content-r0s1" href="#r0s1">libs/foo.spec.ts</a>
|
||||
```
|
||||
Test suite failed to run
|
||||
❌ libs/foo.spec.ts
|
||||
● Test suite failed to run
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue