I run my cucumber tests with the CucumberRunner and am looking for a way to create ‘pretty’ cucumber reports. For example the JVM reporter with the graphs and so on. Or any other plugin. Below is my current setup. Any way to achieve this? I believe the runfeature function generates the one i need, but is it possible with the options aswell?
CucumberKW.runWithCucumberRunner(MyCucumberRunner.class)
@RunWith(Cucumber.class)
@CucumberOptions(
features="Include/features",
glue="",
plugin = ["pretty", "junit:Reports/cucumber.xml", "html:Reports", "json:Reports/cucumber.json"]
)
public class MyCucumberRunner {
}