Display test results during command line execution of the build process.

This commit is contained in:
Isira Seneviratne 2020-03-24 20:14:08 +05:30
parent b8a5d291a5
commit fd35a914df
1 changed files with 4 additions and 4 deletions

View File

@ -71,11 +71,11 @@ android {
sourceCompatibility '1.8'
targetCompatibility '1.8'
}
}
tasks.withType(Test) {
testLogging {
events "passed", "skipped", "failed"
tasks.withType(Test) {
testLogging {
events "passed", "skipped", "failed"
}
}
}