Не могу добавить listener для junit+cucumber
Вот мой test runner. Можно ли как-то добавить сюда listener?
Код
@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/java/features",
glue = "steps",
tags = "@all"
)
public class LoginTestJUnitRunner {
}