Skip to content

Commit

Permalink
testing: fix test tags not serializing in menu context
Browse files Browse the repository at this point in the history
Fixes #145777
  • Loading branch information
connor4312 committed Mar 29, 2022
1 parent 48b6c6a commit 6265e4c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vs/workbench/api/common/extHostTypeConverters.ts
Expand Up @@ -1776,6 +1776,7 @@ export namespace TestItem {
testItem.range = Range.to(item.range || undefined);
testItem.description = item.description || undefined;
testItem.sortText = item.sortText || undefined;
testItem.tags = item.tags.map(t => TestTag.to({ id: TestTag.denamespace(t).tagId }));
return testItem;
}

Expand Down

0 comments on commit 6265e4c

Please sign in to comment.