Skip to content

Commit 723714b

Browse files
Show placeholder text in testing view progress area (fix microsoft#141181) (microsoft#188484)
* Show placeholder text in testing view progress area (fix microsoft#141181) * Use blank placeholder
1 parent 9218965 commit 723714b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/vs/workbench/contrib/testing/browser/testingExplorerView.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ export class TestingExplorerView extends ViewPane {
290290
this.countSummary = text;
291291
this.renderActivityCount();
292292
}));
293+
this.testProgressService.update();
293294

294295
const listContainer = dom.append(this.container, dom.$('.test-explorer-tree'));
295296
this.viewModel = this.instantiationService.createInstance(TestingExplorerViewModel, listContainer, this.onDidChangeBodyVisibility);

src/vs/workbench/contrib/testing/browser/testingProgressUiService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export class TestingProgressUiService extends Disposable implements ITestingProg
115115
this.updateCountsEmitter.fire(collected);
116116
this.updateTextEmitter.fire(getTestProgressText(false, collected));
117117
} else {
118-
this.updateTextEmitter.fire('');
118+
this.updateTextEmitter.fire('\xA0');
119119
this.updateCountsEmitter.fire(collectTestStateCounts(false));
120120
}
121121

0 commit comments

Comments
 (0)