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 e4ae9de commit 89c4a14Copy full SHA for 89c4a14
scripts/TestApp.groovy
@@ -124,8 +124,8 @@ task(runGrailsTests:"Runs Grails' tests under the grails-test directory") {
124
suite.runTest(test, thisTest)
125
if(thisTest.errorCount() > 0 || thisTest.failureCount() > 0) {
126
println "FAILURE"
127
- thisTest.errors().each { result.addError(test, it) }
128
- thisTest.failures().each { result.addFailure(test, it.thrownException()) }
+ thisTest.errors().each { result.addError(test, it.thrownException()); println it }
+ thisTest.failures().each { result.addFailure(test, it.thrownException()); println it }
129
}
130
else { println "SUCCESS"}
131
app.domainClasses.each { dc ->
0 commit comments