chatterInDaSkull
11/01/2022, 12:07 AMTest instrumentation process crashed.
Running it on Compose version 1.3 and Low-resolution MDPI phone, Virtual, API Level 28
Has anyone come across this?
More details in thread🧵chatterInDaSkull
11/01/2022, 12:08 AMchatterInDaSkull
11/01/2022, 12:11 AMchatterInDaSkull
11/01/2022, 12:12 AMczuckie
11/01/2022, 12:15 AMcom.r.test.util.android.runner.RhAndroidJUnitTestRunner
which stands out as fishy though. I'd check that runner to see if you can put in any logging so you can see at what point your tests are dying, because it doesn't look like you're getting to even executing it, if it really is just called SomeComposableTest
.
Also, don't prefix your test names with test
, the @Test
annotation is good enough I promise 😄chatterInDaSkull
11/01/2022, 12:19 AMI really don’t want to hit you with a 😶 , but it really isn’t kotlin specific.ah my intention of bringing up here is because its #compose
Have you tried running your tests with the test orchestrator locally? Have you mimic’d the device configuration as closely as possible? Why do you think compose has anything to do with it?works locally. Works with the same snapshot of the device thats on the test labl when running locally. It works when I remove all compose references in the test 🙂 basically becomes an empty test.
There is nothing in the log beyond theCorrect. Its almost like the test never starts. I’ll try adding in the loggingwhich stands out as fishy though.com.r.test.util.android.runner.RhAndroidJUnitTestRunner
Also, don’t prefix your test names with🙏 sounds good, thetest
annotation is good enough I promise 😄@Test
chatterInDaSkull
11/01/2022, 12:20 AMczuckie
11/01/2022, 12:22 AMczuckie
11/01/2022, 12:22 AMchatterInDaSkull
11/01/2022, 1:01 AM