Skip to content

Commit f4eed94

Browse files
committed
Disable exploded mode for test execution for the moment
1 parent 1d02569 commit f4eed94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-bootstrap/src/main/groovy/grails/util/Environment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public static boolean isDevelopmentEnvironmentAvailable() {
281281
*/
282282
public static boolean isDevelopmentRun() {
283283
Environment env = Environment.getCurrent();
284-
return BuildSettings.GRAILS_APP_DIR_PRESENT && Boolean.getBoolean(RUN_ACTIVE) && (env == Environment.DEVELOPMENT || env == Environment.TEST);
284+
return BuildSettings.GRAILS_APP_DIR_PRESENT && Boolean.getBoolean(RUN_ACTIVE) && (env == Environment.DEVELOPMENT);
285285
}
286286
/**
287287
* Check whether the application is deployed

0 commit comments

Comments
 (0)