From c60bb05bd3615ea207c90d5f128a847cf2e4d336 Mon Sep 17 00:00:00 2001 From: Yedidya Schwartz <36074789+yedidyas@users.noreply.github.com> Date: Tue, 14 Jan 2025 20:07:39 +0200 Subject: [PATCH] change stdout to string[] --- src/parsers/dotnet-trx/dotnet-trx-types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsers/dotnet-trx/dotnet-trx-types.ts b/src/parsers/dotnet-trx/dotnet-trx-types.ts index 7f1bb84..501ae5f 100644 --- a/src/parsers/dotnet-trx/dotnet-trx-types.ts +++ b/src/parsers/dotnet-trx/dotnet-trx-types.ts @@ -51,7 +51,7 @@ export interface UnitTestResult { export interface Output { ErrorInfo: ErrorInfo[] - StdOut: string + StdOut: string[] } export interface ErrorInfo { Message: string[]