krontab/src/jsTest/kotlin/dev/inmo/krontab/utils/RunTest.kt

6 lines
176 B
Kotlin

package dev.inmo.krontab.utils
import kotlinx.coroutines.*
actual fun runTest(block: suspend (scope : CoroutineScope) -> Unit): dynamic = GlobalScope.promise { block(this) }