Hey everyone, how does one filter down a specific ...
# compose
a
Hey everyone, how does one filter down a specific android instrumentation test? e.g. given the class
Copy code
class CalculatorTest {
  fun should_add() = runComposeTest {
    onNodeWithTag("+").performClick()
  }

  fun should_sub() {
    onNodeWithTag("-").performClick()
  }
}
on the jvm, i can run
./gradlew jvmTest --tests CalculatorTest.should_add
to only run the
should_add
test. What is it's equivalent on android??
./gradlew connectedAndroidTest --tests CalculatorTest.should_add
doesn't seem to be working