Closed
Description
Discussed in https://github.com/orgs/cucumber/discussions/2199
I would like to add tag into junit report.
Is it possible for doing that ? or Is there any plugin that we can used ?
TestRunner.scala
@RunWith(classOf[Cucumber]) @CucumberOptions( features = Array("classpath:features/"), glue = Array("steps"), plugin = Array( "pretty", "html:target/test-reports/cucumber/cucumber.html", "json:target/test-reports/cucumber/cucumber.json", "junit:target/test-reports/cucumber/cucumber-results.xml", ), )
Current cucumber-results.xml:
<testsuite>
<testcase>
</system-out>
</system-out>
</testcase>
</testsuite>
What I would like to have:
<testsuite>
<testcase>
**<properties>
<property name="" value=""/>
</properties>**
</system-out>
</system-out>
</testcase>
</testsuite>
```</div>
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done