We have a multi module project with the following structure
- module 1
- module 2
- module e2e
- parent pom
The module e2e contains our karate features (into the src/test/java/features folder)
We couldn't figure out how to run the karate tests using the "mvn test". It always runs 0 tests, instead there are some feature files.
We have tried running "mvn test" from the root of the project, as well as from inside the e2e module
We have other maven projects (not multi module) and it works as expected. Does it necessary to make some configuration action to do it?
Thanks a lot.