Hello! I am trying to write a compose test that to...
# compose
f
Hello! I am trying to write a compose test that toggles the selectable state of a selection chip. The selection state is handled outside the chip and would like to toggle it on the test rule. Currently
performClick
is not toggling the state. Do you have suggestions? Thank you! found the issue: I was not passing
selected
to the chip. 🤦
found the issue: I was not passing
selected = isSelected
to the SelectionChip