We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43440d8 commit 390e6d4Copy full SHA for 390e6d4
vscode-client/testcontrollermanager.ts
@@ -875,6 +875,8 @@ export class TestControllerManager {
875
}
876
877
private refreshUri(uri?: vscode.Uri, reason?: string) {
878
+ if (vscode.workspace.textDocuments.find((d) => d.uri.toString() === uri?.toString())) return;
879
+
880
this.outputChannel.appendLine(`refresh uri ${uri ? uri.toString() : "unknown"} because: ${reason ?? "unknown"}`);
881
882
if (uri) {
0 commit comments