Skip to content

Commit 74fb2a0

Browse files
committed
Add test count into run_tests response
1 parent 2d40387 commit 74fb2a0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Editor/Tools/RunTestsTool.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,10 @@ public void RunFinished(ITestResultAdaptor result)
166166
{
167167
["success"] = true,
168168
["type"] = "text",
169-
["message"] = summary["message"].Value<string>()
169+
["message"] = summary["message"].Value<string>(),
170+
["testCount"] = summary["testCount"],
171+
["passCount"] = summary["passCount"],
172+
["results"] = summary["results"]
170173
});
171174
}
172175
catch (Exception ex)

0 commit comments

Comments
 (0)