Hi, Code coverage with composable functions seem t...
# compose
a
Hi, Code coverage with composable functions seem to be off using Jacoco. Any idea? Details in 🧵
I have simple greeting composable
Copy code
@Composable
fun greeting() {
    Text(text = "Hello there!")
}

@Test
fun testGreeting() {
    composeTestRule.setContent {
        greeting()
    }
    composeTestRule
        .onNodeWithText("Hello there!")
        .assertIsDisplayed()
}
m
Here is a Jacoco issue for this https://github.com/jacoco/jacoco/issues/1208
a
Thanks for the link! @Michael Torres