0

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)

rlovtang
  • 4,860
  • 2
  • 30
  • 30

1 Answers1

1
./gradlew iT --tests "com.mypackage.*"
dmahapatro
  • 49,365
  • 7
  • 88
  • 117