Josh Eldridge
01/07/2023, 4:23 AM./gradlew connectedAndroidTest
? I'm getting an error/exception that is not particularly helpful, I'm wondering if something internal is failing? Posting the stacktrace in the thread.Zac Sweers
01/07/2023, 5:08 AMJosh Eldridge
01/07/2023, 5:10 AMval androidTest by getting {
dependencies {
implementation("androidx.test.espresso:espresso-core:3.5.1")
}
}
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
copied over into the android plugin of the shared module, and if I remove that I can also remove the espresso dependency. This allows the instrumented test command to finish successfully, although it does take multiple minutes for it to finish waiting on the shared module with no tests, which is still odd, but I'll take that over an ambiguous error message. So yeah none of this was probably kotlin multiplatform specific, but oh well I learned something new