andylamax
09/25/2024, 7:57 PMclass 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