The question is regarding the cucumber format option in maven:
In every Junit I have something like:
@Cucumber.Options(format = { "pretty", "html:target/cucumber-html-report/foo" })
I added the following option to the pom file:
<properties>
<cucumber.options> --format html:target/cucumber-html-report/allFoos</cucumber.options>
</properties>
The generated report only have the last execution.
Is there a way to do an "append"?