Tests: raise default timeout of consumeItemsUntilPredicate to 3 seconds (like awaitItem)
This commit is contained in:
parent
427b3f7c0f
commit
65fa3bf6a4
2 changed files with 3 additions and 3 deletions
|
|
@ -22,6 +22,7 @@ import app.cash.turbine.withTurbineTimeout
|
|||
import io.element.android.libraries.core.bool.orFalse
|
||||
import kotlin.time.Duration
|
||||
import kotlin.time.Duration.Companion.milliseconds
|
||||
import kotlin.time.Duration.Companion.seconds
|
||||
|
||||
/**
|
||||
* Consume all items until timeout is reached waiting for an event or we receive terminal event.
|
||||
|
|
@ -48,7 +49,7 @@ suspend fun <T : Any> ReceiveTurbine<T>.awaitLastSequentialItem(): T {
|
|||
* @return the list of consumed items.
|
||||
*/
|
||||
suspend fun <T : Any> ReceiveTurbine<T>.consumeItemsUntilPredicate(
|
||||
timeout: Duration = 100.milliseconds,
|
||||
timeout: Duration = 3.seconds,
|
||||
ignoreTimeoutError: Boolean = false,
|
||||
predicate: (T) -> Boolean,
|
||||
): List<T> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue