Open nikeee opened 1 year ago
Having the same issue. Sample TAP output from my suite:
TAP version 13
1..1
# FIXTURE GitHubActionsSpec
not ok 1 GitHubActionsSpec > it_reports_failing_tests
---
message: Expected true to be false.
severity: fail
data:
got: 'true'
expect: 'false'
...
I ended up writing my own action that uses a popular parser: https://github.com/nikeee/tap-summary
I'm using https://github.com/vitest-dev/vitest/pull/445 to generate TAP results.
This is an excerpt from the TAP output:
I get this error.
It seems like this action is having trouble with the way the library is emitting subtests. Looking at the spec of TAP, sub tests are not even part of TAPv13. It is part of TAPv14, but with a different syntax.