I'm using vitest-dev/vitest#445 to generate TAP results.
This is an excerpt from the TAP output:
TAP version 13
1..2
ok 1 - src/redacted.test.ts # time=11.00ms {
1..5
ok 1 - redacted # time=1.00ms
ok 2 - redacted # time=1.00ms
ok 3 - redacted # time=2.00ms
ok 4 - redacted # time=1.00ms
ok 5 - redacted # time=0.00ms
}
I get this error.
`Error: unknown TAP line X: ' 1..5'`
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.
I'm using vitest-dev/vitest#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.