### waitForNotDisplayed
```kotlin
fun waitForNotDisplayed() {
    val interaction = composeTestRule.onNodeWithTag("test")
    composeTestRule.waitUntil { interaction.isNotDisplayed() }
}
```