Skip to content

Commit

Permalink
Fixes hierarchy display
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Dec 14, 2018
1 parent 78b2fed commit 25df9d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.4.3

- [Fix] Fixes result grouping for heirarchy display in Pipelines UI

# 0.4.2

- [Feature] Sets test states and outcomes
Expand Down
1 change: 1 addition & 0 deletions src/AzurePipelines.TestLogger/LoggerQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ internal async Task CreateParents(IEnumerable<IGrouping<string, ITestResult>> te
{
{ "testCaseTitle", x },
{ "automatedTestName", x },
{ "resultGroupType", "generic" },
{ "outcome", "Passed" }, // Start with a passed outcome initially
{ "state", "InProgress" },
{ "automatedTestType", "UnitTest" },
Expand Down
2 changes: 2 additions & 0 deletions tests/AzurePipelines.TestLogger.Tests/LoggerQueueTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ public void CreateParents()
{
""testCaseTitle"": ""FooFixture"",
""automatedTestName"": ""FooFixture"",
""resultGroupType"": ""generic"",
""outcome"": ""Passed"",
""state"": ""InProgress"",
""automatedTestType"": ""UnitTest"",
Expand All @@ -218,6 +219,7 @@ public void CreateParents()
{
""testCaseTitle"": ""FutzFixture.NestedFixture"",
""automatedTestName"": ""FutzFixture.NestedFixture"",
""resultGroupType"": ""generic"",
""outcome"": ""Passed"",
""state"": ""InProgress"",
""automatedTestType"": ""UnitTest"",
Expand Down

0 comments on commit 25df9d5

Please sign in to comment.