From e53e02b64dfcecbeba37b83abdae4dabd675aeeb Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Wed, 2 Aug 2023 10:08:27 -0700 Subject: [PATCH] testing: tooltip on reworked header text implies tests are still running (#189491) Fixes #189479 --- src/vs/workbench/contrib/testing/browser/testingExplorerView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts b/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts index 23471440be6..ebd4e12e109 100644 --- a/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts +++ b/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts @@ -509,7 +509,7 @@ class ResultSummaryView extends Disposable { const last = results[0]; const dominantState = mapFind(statesInOrder, s => last.counts[s] > 0 ? s : undefined); status.className = ThemeIcon.asClassName(icons.testingStatesToIcons.get(dominantState ?? TestResultState.Unset)!); - counts = collectTestStateCounts(true, [last]); + counts = collectTestStateCounts(false, [last]); duration.textContent = last instanceof LiveTestResult ? formatDuration(last.completedAt! - last.startedAt) : ''; rerun.style.display = 'block'; }