How do you use coroutines in multiplatform tests? ...
# coroutines
r
How do you use coroutines in multiplatform tests? Do you need to
expect
runBlocking functions?
g
Yes, there is also experimental runBlockingTest
r
I found
kotlinx-coroutines-test
which has some useful things but only for jvm 😕
g
ahh, yes, you right
r
So I need to implement everything I need myself and copy-paste that in all my projects... lame
g
it also contains required workarounds for JS
r
Thanks