We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8451865 commit 69fca8cCopy full SHA for 69fca8c
grails-shell/src/test/groovy/org/grails/cli/profile/commands/CreateAppCommandSpec.groovy
@@ -17,12 +17,14 @@ class CreateAppCommandSpec extends Specification {
17
PrintStream originalOut
18
19
void setup() {
20
+ System.setProperty("org.fusesource.jansi.Ansi.disable", "true")
21
originalOut = GrailsConsole.instance.out
22
sps = new StringPrintStream()
23
GrailsConsole.instance.out = sps
24
}
25
26
void cleanup() {
27
+ System.setProperty("org.fusesource.jansi.Ansi.disable", "false")
28
GrailsConsole.instance.out = originalOut
29
30
0 commit comments