Skip to content
Snippets Groups Projects
Commit 8e61448d authored by Jamie Tanna's avatar Jamie Tanna
Browse files

Output Cucumber HTML reports

parent d1f3458a
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ import org.junit.runner.JUnitCore;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(plugin = "json:target/report.json", features = {"classpath:features"})
@CucumberOptions(plugin = {"html:target/cucumber-html", "json:target/report.json"}, features = {"classpath:features"})
public class RunCukes {
public static void main(String[] args) {
JUnitCore.main(RunCukes.class.getName());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment