From 02ccabffdb80b44c987a61d262b5cf77d8cf7615 Mon Sep 17 00:00:00 2001 From: Yedidya Schwartz <36074789+yedidyas@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:46:51 +0200 Subject: [PATCH] add StdOut to UnitTestResult object --- src/parsers/dotnet-trx/dotnet-trx-types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parsers/dotnet-trx/dotnet-trx-types.ts b/src/parsers/dotnet-trx/dotnet-trx-types.ts index 97dbf8a..7f1bb84 100644 --- a/src/parsers/dotnet-trx/dotnet-trx-types.ts +++ b/src/parsers/dotnet-trx/dotnet-trx-types.ts @@ -51,6 +51,7 @@ export interface UnitTestResult { export interface Output { ErrorInfo: ErrorInfo[] + StdOut: string } export interface ErrorInfo { Message: string[]