```actual fun <T> runTest(block: suspend Cor...
# multiplatform
s
Copy code
actual fun <T> runTest(block: suspend CoroutineScope.() -> T) {
    TestCoroutineDispatcher().runBlockingTest { block() }
}