1
0
Fork 0
mirror of https://github.com/dorny/test-reporter.git synced 2026-02-04 13:37:56 +01:00

Updates to README and info logs

This commit is contained in:
Michal Dorner 2021-02-01 11:14:07 +01:00
parent efb99aed01
commit 9c4a2c56d7
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
7 changed files with 12 additions and 78 deletions

View file

@ -1,4 +1,3 @@
import * as core from '@actions/core'
import {ParseOptions, TestParser} from '../../test-parser'
import {normalizeFilePath} from '../../utils/file-utils'
@ -78,7 +77,6 @@ export class DartJsonParser implements TestParser {
}
private getTestRun(path: string, content: string): TestRun {
core.info(`Parsing content of '${path}'`)
const lines = content.split(/\n\r?/g)
const events = lines
.map((str, i) => {