The state flows in question were created via ```.s...
# squarelibraries
a
The state flows in question were created via
Copy code
.stateIn(
    scope = viewModelScope,
    started = SharingStarted.WhileSubscribed(),
    initialValue = emptyList()
)
and I was hoping to use turbine to manage subscription to the flows so that they would update properly. Is there a recommended pattern to do that so that I can assert on the value despite the subscription requirement?