vytukaz
4 years agoNew Contributor
No reports
after test run i am not getting reports, just console output
my TestRunner:
package testRunner;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
plugin = {"pretty\",\"html:target/test-output\", \"json:target/cucumber.json\", \"junit:target/cucumber.xml"},
features = "features",
monochrome = true,
glue = {"steps"}
)
public class TestRunner {
}
project structure: