0
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 {
 
}

enter image description here

I tried to change the path of stepdefinitions & Feature file but it didnt work.

mkrieger1
  • 19,194
  • 5
  • 54
  • 65

0 Answers0