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 ba9cc53 commit 22dbf40Copy full SHA for 22dbf40
TestStack.BDDfy/Processors/Reports/Diagnostics/DiagnosticsReportBuilder.cs
@@ -19,7 +19,8 @@ public DiagnosticsReportBuilder(ISerializer serializer)
19
public string CreateReport(FileReportModel model)
20
{
21
var graph = GetDiagnosticData(model);
22
- return _serializer.Serialize(graph);
+ var rootObject = new { Stories = graph };
23
+ return _serializer.Serialize(rootObject);
24
}
25
26
public IList<StoryDiagnostic> GetDiagnosticData(FileReportModel viewModel)
0 commit comments