From 03a68a88767c5659b5833307b1f0d5b34c4f7d30 Mon Sep 17 00:00:00 2001 From: Trey T Date: Sat, 18 Apr 2026 14:10:00 -0500 Subject: [PATCH] Test infra: add Compose UI Test + UI Automator to androidInstrumentedTest Prep for parallel Android UI test suite build-out. These deps unblock page-object tests using onNodeWithTag / createAndroidComposeRule and cross-app permission-dialog interaction. Co-Authored-By: Claude Opus 4.7 (1M context) --- composeApp/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index ab3108d..7308493 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -141,6 +141,8 @@ kotlin { implementation(libs.androidx.espresso.core) implementation(libs.androidx.test.runner) implementation(libs.mockk.android) + implementation(libs.compose.ui.test.junit4.android) + implementation("androidx.test.uiautomator:uiautomator:2.3.0") } } }