jsMain.dk.cachet.carp.test.runSuspendTest.kt Maven / Gradle / Ivy
Go to download
Helper classes relied upon by test projects of all subsystems. E.g., to disable tests specified in common part of projects for the JavaScript runtime only.
package dk.cachet.carp.test
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.promise
actual fun runSuspendTest( block: suspend () -> Unit ): dynamic = GlobalScope.promise { block() }