vscode-test-explorer
vscode-test-explorer copied to clipboard
[Feature Request] tags support in test explorer
Hi, there are some test framework (like catch) that support tags on tests, it will be extremely helpful if we could see the tags in the explorer tree and filter / narrow the tree according to the tags.
Are you using Catch2 and Google Test Explorer?
Hello @aey76 ,
While we are waiting for this feature you from now with the new feature custom grouping you can group your tests by tags. Try something like this:
"testMate.cpp.test.advancedExecutables": [
{
"pattern": "{build,Build,BUILD,out,Out,OUT}/**/*{suite,test,Test,TEST}*",
"catch2": {
"testGrouping": {
"groupByTags": {
"groupUngroupedTo": "<no tag>"
}
}
}
}
]