From 46691ebeafbbec4f41da6b5deeab0dd97c0f8806 Mon Sep 17 00:00:00 2001 From: Yedidya Schwartz <36074789+yedidyas@users.noreply.github.com> Date: Tue, 14 Jan 2025 20:19:55 +0200 Subject: [PATCH] use stdout --- src/parsers/dotnet-trx/dotnet-trx-parser.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/parsers/dotnet-trx/dotnet-trx-parser.ts b/src/parsers/dotnet-trx/dotnet-trx-parser.ts index a81d4a23..8804705c 100644 --- a/src/parsers/dotnet-trx/dotnet-trx-parser.ts +++ b/src/parsers/dotnet-trx/dotnet-trx-parser.ts @@ -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}` } }