package org.koitharu.kotatsu import android.app.Instrumentation import kotlin.coroutines.resume import kotlin.coroutines.suspendCoroutine suspend fun Instrumentation.awaitForIdle() = suspendCoroutine { cont -> waitForIdle { cont.resume(Unit) } }