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 db0b840 commit c098309Copy full SHA for c098309
src/TestExplorer/TestRunner.ts
@@ -107,6 +107,9 @@ export class TestRunProxy {
107
// level test item and users can cycle through them with the up/down arrows in the UI.
108
testClass.location = undefined;
109
110
+ // Results should inherit any tags from the parent.
111
+ testClass.tags = parent.tags.map(t => new vscode.TestTag(t.id));
112
+
113
const added = upsertTestItem(this.controller, testClass, parent);
114
115
// If we just update leaf nodes the root test controller never realizes that
0 commit comments