From 633e7df8699fe0e27cea7378b0921ac4ff95b12c Mon Sep 17 00:00:00 2001 From: Eric Song Date: Thu, 6 Jun 2024 16:37:25 -0400 Subject: [PATCH] Remove log group so logs are flattened --- dist/index.js | 2 -- src/main.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 715691f..9284738 100644 --- a/dist/index.js +++ b/dist/index.js @@ -343,12 +343,10 @@ class TestReporter { const input = yield inputProvider.load(); for (const [reportName, files] of Object.entries(input)) { try { - core.startGroup(`Creating test report ${reportName}`); const tr = yield this.createReport(parser, reportName, files); results.push(...tr); } finally { - core.endGroup(); } } const isFailed = results.some(tr => tr.result === 'failed'); diff --git a/src/main.ts b/src/main.ts index 8f481af..dc144ef 100644 --- a/src/main.ts +++ b/src/main.ts @@ -111,11 +111,9 @@ class TestReporter { const input = await inputProvider.load() for (const [reportName, files] of Object.entries(input)) { try { - core.startGroup(`Creating test report ${reportName}`) const tr = await this.createReport(parser, reportName, files) results.push(...tr) } finally { - core.endGroup() } }