-
Notifications
You must be signed in to change notification settings - Fork 139
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
before v4.1.1 on a tags tab we had a full hierarchical name of a test, for example v4.0.9 behavior

v4.1.1 displays only a name of a test instead of full hierarchical name

code example
ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter("extent.html");
htmlReporter.config().setTheme(Theme.DARK);
ExtentReports mainReport = new ExtentReports();
mainReport.attachReporter(htmlReporter);
ExtentTest test = mainReport.createTest("Test").assignCategory("test category");
ExtentTest node = test.createNode("Node").assignCategory("node category");
node.createNode("step").pass("pass");
htmlReporter.config().setReportName("report");
mainReport.flush();
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request