Hi all! I have a text composable defined like this...
# compose
g
Hi all! I have a text composable defined like this:
Copy code
Text(
    fontWeight = if (isSelected) FontWeight.Bold else FontWeight.Normal,
)
Is there a way to verify in a test that this text node does indeed have its
fontWeight
set to the right value?