hbenl / vscode-test-explorer

The VS Code Test Explorer extension
MIT License
215 stars 55 forks source link

#177: Dedupe child nodes when added during test run #178

Closed TheSench closed 3 years ago

TheSench commented 3 years ago

When test run event contains children, the children were already being added to the resulting testSuiteNode. Now the children are also added to nodesById to avoid them being duplicated when events for them are sent. This fixes #177.

Before PR

image

After PR

image