In Compose unit testing: ``` onNodeWithText...
# compose
f
In Compose unit testing:
Copy code
onNodeWithText("foo").assertHasClickAction() // OK
        onAllNodesWithText("foo").assertAll(hasClickAction()) // OK
        
        onNodeWithText("foo").assertExists() // OK
        onAllNodesWithText("foo").assertAll(exists()) // No exists() or similar method for assertExists()?
Am I missing something? How do I test everything in a node collection exists?
c
Hi @Fudge Did you find anything?
f
@Christophe Dongieux My Stack Overflow question keeps getting upvoted, with no response 🙂
c