```suspend fun fetchTwoDocs() =     coroutineScope {         val deferredOne = async { fetchDoc(1) }...
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