mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 22:37:09 +01:00
use stdout
This commit is contained in:
parent
c60bb05bd3
commit
46691ebeaf
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
@ -160,7 +161,7 @@ export class DotnetTrxParser implements TestParser {
|
|||
path,
|
||||
line,
|
||||
message,
|
||||
details: `${message}\n${stackTrace}`
|
||||
details: `${message}\n${stackTrace}\n${stdOut}`
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue