Does ktor play nicely with `runBlockingTest`? I h...
# ktor
b
Does ktor play nicely with
runBlockingTest
? I have a test HttpClient (created with MockEngine) which, when executing a specific request mimics a network delay by making a call to
delay
and
advanceUntilIdle
does not appear to advance past that delay, so I'm guessing it has methods which launch coroutines not within the current scope (which would be the
TestCoroutineScope
) but in some scope of its own?