I can target a specific package with the grails command:
grails test-app com.mypackage.* -integration
How to do the same using Gradle wrapper?
Tried ./gradlew integrationTest com.mypackage.*
, but no luck.
(Grails 3.1.10, Gradle wrapper 2.13)
./gradlew iT --tests "com.mypackage.*"