build: recompile production code

This commit is contained in:
Jozef Izso 2025-03-12 13:14:18 +01:00
parent 70db77d88c
commit 10d304d4fb

2
dist/index.js generated vendored
View file

@ -1358,7 +1358,7 @@ class JestJunitParser {
if (!this.options.parseErrors || !tc.failure) {
return undefined;
}
const details = tc.failure[0];
const details = typeof tc.failure[0] === 'string' ? tc.failure[0] : tc.failure[0]['_'];
let path;
let line;
const src = (0, node_utils_1.getExceptionSource)(details, this.options.trackedFiles, file => this.getRelativePath(file));