Docs
Blog Status Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

2023-03-15

gradle-plugin 0.9.2

  • the Gradle plugin now runs different application variant tests in parallel using the Gradle workers
  • the plugin now creates a testWithEmulatorWtf anchor task depending on all of the possible test tasks
  • added variantFilter {} option to the plugin to selectively disable emulator.wtf for certain variants, example usage:
    emulatorwtf {
      // Do not generate the test task for some specific variants
      variantFilter {
        if (variant.buildType.name == 'release') {
          enabled = false
        }
      }
    }
    

emulator.wtf web app

  • fixed really annoying browser back behaviour where it was hard to return from a results link
  • fixed incorrectly displaying failed tests as flaky with some test runs