We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to use the new multiplatform test feature from 1.6.0. Unfortunately, we use JPMS, which fails with this error message:
module io.ktor.io reads package kotlinx.coroutines.test from both kotlinx.coroutines.test.jvm and kotlinx.coroutines.core.jvm
Reason: coroutines-core uses the same package kotlinx.coroutines.test: https://github.com/Kotlin/kotlinx.coroutines/blob/master/kotlinx-coroutines-core/jvm/src/test_/TestCoroutineContext.kt
coroutines-core
kotlinx.coroutines.test
Maybe related: #3128
The text was updated successfully, but these errors were encountered:
We'll drop kotlinx.coroutines.test in the next major release, it contains pre-1.0.0 obsolete test classes
Sorry, something went wrong.
59488d1
Remove TestCoroutineContext.kt completely (Kotlin#3291)
89db97b
Fixes Kotlin#3218
No branches or pull requests
I want to use the new multiplatform test feature from 1.6.0.
Unfortunately, we use JPMS, which fails with this error message:
Reason:
coroutines-core
uses the same packagekotlinx.coroutines.test
: https://github.com/Kotlin/kotlinx.coroutines/blob/master/kotlinx-coroutines-core/jvm/src/test_/TestCoroutineContext.ktMaybe related: #3128
The text was updated successfully, but these errors were encountered: