Skip to content

Commit

Permalink
use stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
yedidyas authored Jan 14, 2025
1 parent c60bb05 commit 46691eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/parsers/dotnet-trx/dotnet-trx-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export class DotnetTrxParser implements TestParser {

const message = test.error.Message[0]
const stackTrace = test.error.StackTrace[0]
const stdOut = test.error.StdOut?.join('\n') || ''
let path
let line

Expand All @@ -160,7 +161,7 @@ export class DotnetTrxParser implements TestParser {
path,
line,
message,
details: `${message}\n${stackTrace}`
details: `${message}\n${stackTrace}\n${stdOut}`
}
}

Expand Down

0 comments on commit 46691eb

Please sign in to comment.