mirror of
https://github.com/dorny/test-reporter.git
synced 2026-03-22 07:52:14 +01:00
Refactor test-reporter to module based package
This commit is contained in:
parent
02510bde1f
commit
ef1f9a4e60
23 changed files with 90 additions and 89 deletions
|
|
@ -1,8 +1,8 @@
|
|||
import {ParseOptions, TestParser} from '../../test-parser'
|
||||
import {ParseOptions, TestParser} from '../../test-parser.js'
|
||||
import {parseStringPromise} from 'xml2js'
|
||||
|
||||
import {PhpunitReport, SingleSuiteReport, TestCase, TestSuite} from './phpunit-junit-types'
|
||||
import {getBasePath, normalizeFilePath} from '../../utils/path-utils'
|
||||
import {PhpunitReport, SingleSuiteReport, TestCase, TestSuite} from './phpunit-junit-types.js'
|
||||
import {getBasePath, normalizeFilePath} from '../../utils/path-utils.js'
|
||||
|
||||
import {
|
||||
TestExecutionResult,
|
||||
|
|
@ -11,7 +11,7 @@ import {
|
|||
TestGroupResult,
|
||||
TestCaseResult,
|
||||
TestCaseError
|
||||
} from '../../test-results'
|
||||
} from '../../test-results.js'
|
||||
|
||||
export class PhpunitJunitParser implements TestParser {
|
||||
readonly trackedFiles: Set<string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue