Skip to content
bootstraponline edited this page Sep 13, 2018 · 2 revisions

Gradle

  • gradle check test --tests "*AndroidRunCommandTest*"
  • gradle check test --tests "ftl.cli.firebase.test.android.*"
  • open build/reports/jacoco/test/html/index.html

Gradle Kotlin DSL

Show stdout in tests.

tasks {
    "test"(Test::class) {
            testLogging { showStandardStreams = true }
     }
}

Android Gradle

wrapper {
    distributionType = Wrapper.DistributionType.ALL
}

Clone this wiki locally