kotest / kotest-intellij-plugin

The official Kotest plugin for Intellij and Android Studio
Apache License 2.0
170 stars 19 forks source link

Error in scoping for output #29

Closed bbaldino closed 4 years ago

bbaldino commented 4 years ago

The following test class:

class ScopeTest : ShouldSpec() {
    override fun isolationMode(): IsolationMode? = IsolationMode.InstancePerLeaf

    init {
        "scope1" {
            "scope2" {
                should("scope3") {

                }
                should("scope4") {

                }
            }
        }
    }
}

when run with the kotlintest plugin (version 3.3.0.11), looks like this: image (1)

But if I delete the kotlintest run configuration and run it with the junit runner, it looks as expected: image (2)

stale[bot] commented 4 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

sksamuel commented 4 years ago

This is fixed in the new kotest plugin.