thanksforallthefish
04/29/2020, 6:42 AMpackage xxx
import io.kotest.core.spec.style.StringSpec
import io.kotest.matchers.shouldBe
class FailingTest : StringSpec() {
init {
"reported twice" {
"a" shouldBe "b"
}
}
}
both intellij and gradle reports 2 failure. I scanned open issues and saw nothing, in case I can open oneAshish Kumar Joy
04/29/2020, 7:13 AMthanksforallthefish
04/29/2020, 7:33 AM