From 19aaf9016ed662cee850ab18a3224cfdada01699 Mon Sep 17 00:00:00 2001 From: Vasanth Dharmaraj Date: Sat, 18 Jun 2022 01:08:45 +0530 Subject: [PATCH] Suppress "Processing test results from" log --- src/main.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 2777132..d54fb30 100644 --- a/src/main.ts +++ b/src/main.ts @@ -148,7 +148,6 @@ class TestReporter { const results: TestRunResult[] = [] for (const {file, content} of files) { - core.info(`Processing test results from ${file}`) const tr = await parser.parse(file, content) results.push(tr) }