Is this the right way to mock a Coroutine async ta...
# mockk
h
Is this the right way to mock a Coroutine async tasks
Copy code
coEvery{
                mockService.parseCarAsync(any(), any())
            } returns GlobalScope.async { "testCarId" }
?