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 04031c4 commit 613353dCopy full SHA for 613353d
Editor/Tools/RunTestsTool.cs
@@ -114,6 +114,12 @@ public void TestStarted(ITestAdaptor test)
114
// Called when a test finishes
115
public void TestFinished(ITestResultAdaptor result)
116
{
117
+ // Skip test suites (tests with children)
118
+ if (result.Test.HasChildren)
119
+ {
120
+ return;
121
+ }
122
+
123
_testResults.Add(new TestResult
124
125
Name = result.Test.Name,
0 commit comments