@CucumberOptions(format = "json:target/cucumber-report.json", strict = false)
public class RunCukesTest implements IHookable {
@Test(groups = "cucumber", description = "Runs Cucumber Features", skipFailedInvocations = true)
public void runCukes() throws IOException {
new TestNGCucumberRunner(getClass()).runCukes();
}