This commit is contained in:
Aart Jan Kaptijn 2022-11-14 15:03:23 +01:00 committed by A. J. Kaptijn
parent e5aa1531a6
commit 411cf3d74b
19 changed files with 82 additions and 119 deletions

View file

@ -1,9 +1,9 @@
import {ParseOptions, TestParser} from '../../test-parser'
import {ParseOptions, TestParser} from '../../test-parser.js'
import {parseStringPromise} from 'xml2js'
import {JunitReport, TestCase, TestSuite} from './jest-junit-types'
import {getExceptionSource} from '../../utils/node-utils'
import {getBasePath, normalizeFilePath} from '../../utils/path-utils'
import {JunitReport, TestCase, TestSuite} from './jest-junit-types.js'
import {getExceptionSource} from '../../utils/node-utils.js'
import {getBasePath, normalizeFilePath} from '../../utils/path-utils.js'
import {
TestExecutionResult,
@ -12,7 +12,7 @@ import {
TestGroupResult,
TestCaseResult,
TestCaseError
} from '../../test-results'
} from '../../test-results.js'
export class JestJunitParser implements TestParser {
assumedWorkDir: string | undefined