We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01afa60 commit 47e2045Copy full SHA for 47e2045
build.gradle.kts
@@ -301,7 +301,6 @@ kotlin {
301
implementation("androidx.appcompat:appcompat:1.3.1")
302
}
303
304
-
305
val androidTest by getting {
306
dependencies {
307
implementation(kotlin("test-junit"))
src/desktopTest/kotlin/com.adamratzman.spotify/CommonImpl.kt
@@ -16,4 +16,4 @@ actual fun Exception.stackTrace() = printStackTrace()
16
17
val testCoroutineContext: CoroutineContext = MainScope().coroutineContext
18
actual fun runBlockingTest(block: suspend CoroutineScope.() -> Unit) =
19
- runBlocking { block() }
+ runBlocking(testCoroutineContext) { block() }
0 commit comments