i want to write multiplatform tests in `commonTest...
# javascript
n
i want to write multiplatform tests in
commonTest
and
jsTest
.. sadly i need to run suspending functions and runBlocking is not in kotlinjs and suspending test function are not allowed in kotlin-test what can i do there ?
s
There is a youtrack issue about suspending test methods with workarounds
I think one of them is to make you own
runTest
and implement on the platform
r
n
thanks, this fixes it for me