test-results-reporter / parser

Parse test results from JUnit, TestNG, xUnit and many more
https://www.testbeats.com
MIT License
12 stars 9 forks source link

JUnit results treat Skipped test cases as Passed #70

Closed bryanbcook closed 2 months ago

bryanbcook commented 2 months ago

As per the JUnit specification, skipped tests are represented as an element named skipped:

<testsuites>
  <testsuite ... skipped="1">
      <testcase ....>
          <skipped/>
      </testcase>
  </testsuite>
</testsuites>

The current implementation should report these tests with a status of SKIP. Instead, they are treated as PASS.