From 1c33c4c823634844b675515545e011e361702e03 Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Sun, 29 Jun 2025 16:26:12 +0200 Subject: [PATCH] Rebuild `dist/` code --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index b7ca089..e129f44 100644 --- a/dist/index.js +++ b/dist/index.js @@ -837,12 +837,12 @@ class DotnetNunitParser { .map(suite => suite.$.name) .join('.'); const groupName = suitesWithoutTheories[suitesWithoutTheories.length - 1].$.name; - let existingSuite = result.find(existingSuite => existingSuite.name === suiteName); + let existingSuite = result.find(suite => suite.name === suiteName); if (existingSuite === undefined) { existingSuite = new test_results_1.TestSuiteResult(suiteName, []); result.push(existingSuite); } - let existingGroup = existingSuite.groups.find(existingGroup => existingGroup.name === groupName); + let existingGroup = existingSuite.groups.find(group => group.name === groupName); if (existingGroup === undefined) { existingGroup = new test_results_1.TestGroupResult(groupName, []); existingSuite.groups.push(existingGroup);