package com.algocrafts.cucumber; import cucumber.api.CucumberOptions; import cucumber.api.junit.Cucumber; import org.junit.Ignore; import org.junit.runner.RunWith; @Ignore @RunWith(Cucumber.class) @CucumberOptions(plugin = {"pretty", "html:target/cucumber", "json:target/cucumber.json"}) public class RunCucumberTest { }