Support parsing multiple reports

This commit is contained in:
Michal Dorner 2021-01-16 22:53:14 +01:00
parent 659bb4fff3
commit c48c07640f
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
15 changed files with 219 additions and 74 deletions

View file

@ -7,7 +7,7 @@ import {ParseOptions} from '../src/parsers/parser-types'
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
const xmlFixture = {
path: fixturePath,
path: path.relative(__dirname, fixturePath),
content: fs.readFileSync(fixturePath, {encoding: 'utf8'})
}