package testrunners;
import org.junit.runner.RunWith;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
@RunWith(Cucumber.class)
@CucumberOptions(
features = {"src/test/java/AppFeatures"},
glue = {"stepdefinitions"},
plugin = {"pretty"}
)
public class AmazonTest {
}
I tried to change the path of stepdefinitions & Feature file but it didnt work.