Question

I am trying to set the "name" option for Cucumber to be able to run a specific feature or scenario.

I have entered this,

mvn test -DCucumber.Options--name="MyFeatureName"

but it just runs all the features and doesn't give an error.

Any ideas?

Was it helpful?

Solution

Here is a snippet from the Cucumber-JVM repo on how to run the java-helloworld example by passing cucumber options:

mvn test -Dcucumber.options="--format json-pretty --glue classpath:cucumber/examples/java/helloworld src/test/resources"

Keep in mind that it will override all the options in the @Cucumber.Options annotation you have on "RunCukesTest". I haven't got it to work for my own tests but maybe this will help.

So it looks like you need to give all the options needed to run cucumber, including the java class path and where the code is located using the "--glue" parameter.

OTHER TIPS

Your tests are running in separate JVM, so you need to specify that system property in the test plugin configuration (i.e. surefire or failsafe plugin config in your pom.xml).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top