OliverO2
OliverO2
Currently, it is hard to introduce a simple change (like [adding a context element at the spec level](https://github.com/kotest/kotest/pull/4284#issuecomment-2286407856)) correctly. And it is hard to find out what causes a bug....
Versions: * kotlinx.coroutines 1.9.0 * Kotlin 2.0.20 Running the following code in `commonMain`: ```kotlin import kotlinx.coroutines.delay import kotlin.time.Duration.Companion.seconds suspend fun main() { println("main: before delay") delay(1.seconds) println("main: after delay") }...
Versions: FIR Tree 0.4.0, IntelliJ IDEA 2024.2.3 (Ultimate Edition) To reproduce: 1. Start the IDE. 2. Select the project view in the tool window bar 3. Open a Kotlin source...
The [documentation for `TestScope` states](https://github.com/Kotlin/kotlinx.coroutines/blob/fed40ad1f9942d1b16be872cc555e08f965cf881/kotlinx-coroutines-test/common/src/TestScope.kt#L153). > If [context] provides a [Job], that job is used as a parent for the new scope. This implies that `TestScope` is meant to be...
**Is your feature request related to a problem? Please describe** Use case: TestBalloon's API consists of a large number of extension functions, mostly on `TestConfig`, which is a central configuration...
**Describe the bug** With currently unpublished changes for [TestBalloon](https://github.com/infix-de/testBalloon), Dokka produced a link * from `dokka/html/testBalloon-framework-core/de.infix.testBalloon.framework.core/-test/index.html` * to `dokka/html/testBalloon-framework-shared/de.infix.test-balloon.framework.shared/-abstract-test/index.html`. (Note the uppercase conversion for the package name). However, the target...