hi there, is there a way to specify running a spec...
# compose-android
a
hi there, is there a way to specify running a specific instrumentation test instead of running all of them? The gradle task bellow
Copy code
./gradlew connectedAndroidTest --tests package.com.TestClass.*
Seem to be failing with Also, how do I stop (interrupt) running the tests provided that they are already running?
Cmd+C
,
Ctrl+C
doesn't seem to be working. The terminal does quit/exit but the tests keep running on the phone
not kotlin but kotlin colored 2
e
yeah that's just how it is with instrumented Android tests
the built-in https://developer.android.com/reference/android/test/InstrumentationTestRunner is has some arguments that it'll understand for test filtering
a
I don't think I fully understand sharding tests here. And the remaining filter test seems just capable of filtering them on based on how long the tests will using (SmallTest, MediumTest and LargeTest)
Let me see if I can resort to adb to filter the running tests