Skip to content

Commit 2db61e4

Browse files
committed
GRAILS-5810 - support the “-https” arg to test-app to run functional tests over https.
1 parent b5ee5c0 commit 2db61e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/_GrailsTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ integrationTestPhaseCleanUp = {
334334
*/
335335
functionalTestPhasePreparation = {
336336
packageApp()
337-
runApp()
337+
testOptions.https ? runAppHttps() : runApp()
338338

339339
prevAppCtx = binding.hasProperty('appCtx') ? appCtx : null
340340
appCtx = ApplicationHolder.application.mainContext

0 commit comments

Comments
 (0)