extent-framework / extentreports-csharp

Extent Reporting Library, .NET
http://extentreports.com
Apache License 2.0
49 stars 40 forks source link

Tags/Categories duplicated on created child nodes (v5) #223

Open jrod567 opened 3 days ago

jrod567 commented 3 days ago

In v5, tags created on the originating ExtentTest are now carried down to all child nodes created.

`ExtentSparkReporter sparkReport = new ExtentSparkReporter(fullReportPath);
ExtentReports er = new ExtentReports(); er.AttachReporter(sparkReport); er.Report.AnalysisStrategy = AnalysisStrategy.Test;

ExtentTest et = er.CreateTest("MyTest"); et.AssignCategory("MyTag1", "MyTag2"); et.CreateNode("MyNode1").CreateNode("MyNode2"); er.Flush();`

Report: image

In v4, this behavior did not exist. Is this by design in v5 or a bug?