Skip to content

Commit

Permalink
Merge pull request #10 from gemini-testing/TESTPLANE-259.add_browser_…
Browse files Browse the repository at this point in the history
…tags

feat: add ability to filter tests by browser name
  • Loading branch information
DudaGod authored Sep 27, 2024
2 parents 8babab6 + 673c1a1 commit 882d30b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test-tree/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ export class TestTree extends vscode.Disposable {
const browserItem = this._createBrowserTestItem(browserId, testItem);
this._browserItems.set(browserItem.id, browserItem);

browserItem.tags = [...browserItem.tags, new vscode.TestTag(`browser:${browserId}`)];

TestCaseByBrowser.register(browserItem, testItem);
testItem.children.add(browserItem);
});
Expand Down

0 comments on commit 882d30b

Please sign in to comment.