```suspend fun fetchTwoDocs() =     coroutineScope...
# mockk
v
Copy code
suspend fun fetchTwoDocs() =
    coroutineScope {
        val deferredOne = async { fetchDoc(1) }
        val deferredTwo = async { fetchDoc(2) }
        deferredOne.await()
        deferredTwo.await()
    }
How to test this function in mockk