To test a specific feature in karate i run this command:
mvn test -Dkarate.options="classpath:myfeature.feature"
there is a way to run a single scenario defined into a feature?
Thanks, Lorenzo
To test a specific feature in karate i run this command:
mvn test -Dkarate.options="classpath:myfeature.feature"
there is a way to run a single scenario defined into a feature?
Thanks, Lorenzo
Yes, you can via tags: https://github.com/intuit/karate#tags
Also note that you can run a scenario by name, for e.g. if the name is "first":
And if you use IntelliJ - you can right click and do the above.