1000 feature files in src/test/resources. I want to run only the features file which are even( 2, 4, 6,......1000) how can we do that?
I tried to group them but not sure like this will be good approach.
1000 feature files in src/test/resources. I want to run only the features file which are even( 2, 4, 6,......1000) how can we do that?
I tried to group them but not sure like this will be good approach.
Copyright © 2021 Jogjafile Inc.
If you are using JUnit 5 with Cucumber the you can use a
PostDiscoveryFilterfrom the JUnit Platform to filter out tests.Something like: