Skip to content

Commit

Permalink
upd espresso to 3.6.1 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-tiurin authored Jul 23, 2024
1 parent af50104 commit 3a8be17
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object Versions {
const val dokkaPlugin = "1.9.20"

const val recyclerView = "1.2.1"
const val espresso = "3.4.0"
const val espresso = "3.6.1"
const val uiautomator = "2.2.0"
const val accessibility = "4.0.0"
const val hamcrestCore = "2.2"
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[versions]
agp = "8.3.2"
atomicfu = "0.24.0"
guava = "33.2.1-android"
kotlin = "2.0.0"
compose = "1.6.7"
compose-compiler = "1.5.4"
Expand Down Expand Up @@ -29,6 +30,7 @@ uiTestJunit4Android = "1.6.8"
androidx-ui-test-junit4-android = { module = "androidx.compose.ui:ui-test-junit4-android", version.ref = "uiTestJunit4Android" }
androidx-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "uiTestJunit4Android" }
atomicfu = { module = "org.jetbrains.kotlinx:atomicfu", version.ref = "atomicfu" }
guava = { module = "com.google.guava:guava", version.ref = "guava" }
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
Expand Down
1 change: 1 addition & 0 deletions ultron-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ dependencies {
implementation(Libs.kotlinReflect)
implementation(Libs.kotlinStdlib)
implementation(Libs.recyclerView)
implementation(libs.guava)
api(Libs.espressoCore)
api(Libs.espressoContrib)
api(Libs.espressoWeb)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ import androidx.test.espresso.DataInteraction
import androidx.test.espresso.Espresso.onView
import androidx.test.espresso.NoMatchingViewException
import androidx.test.espresso.ViewInteraction
import androidx.test.espresso.core.internal.deps.guava.base.Joiner
import androidx.test.espresso.core.internal.deps.guava.base.Preconditions
import androidx.test.espresso.core.internal.deps.guava.base.Predicate
import androidx.test.espresso.core.internal.deps.guava.collect.Iterables
import androidx.test.espresso.core.internal.deps.guava.collect.Iterators
import androidx.test.espresso.core.internal.deps.guava.collect.Lists
import androidx.test.espresso.matcher.ViewMatchers
import androidx.test.espresso.util.EspressoOptional
import androidx.test.espresso.util.TreeIterables
Expand All @@ -25,6 +19,12 @@ import com.atiurin.ultron.extensions.getTargetMatcher
import com.atiurin.ultron.extensions.getViewMatcher
import com.atiurin.ultron.extensions.simpleClassName
import com.atiurin.ultron.utils.runOnUiThread
import com.google.common.base.Joiner
import com.google.common.base.Preconditions
import com.google.common.base.Predicate
import com.google.common.collect.Iterables
import com.google.common.collect.Iterators
import com.google.common.collect.Lists
import org.hamcrest.Matcher
import java.util.Locale
import java.util.concurrent.atomic.AtomicReference
Expand Down

0 comments on commit 3a8be17

Please sign in to comment.