I'm trying to run Compose tests, but no matter wha...
# compose-android
e
I'm trying to run Compose tests, but no matter what I do it takes 45-47 seconds for each test to complete, even for this test:
Copy code
@get:Rule
  val composeTestRule = createAndroidComposeRule<MyActivity>()

  @Test
  fun `clicking the next button when the phone number is blank shows an error`() {
    composeTestRule.waitForIdle()
  }
Anyone know what the issue is?
s
I am not sure what the issue is, but Android was not doing great with the space delimited names historically
e
I think there were changes made to support that recently. In any case I removed the spaces and it still happens.
s
Ah, no idea then :)
e
Looks like it wasn't compose related, but a misunderstanding of how to set up an Android test with a custom application.