https://kotlinlang.org logo
Title
t

thanksforallthefish

04/29/2020, 6:42 AM
hello, did anyone notice failing tests being reported more than once?
package 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 one
a

Ashish Kumar Joy

04/29/2020, 7:13 AM
@thanksforallthefish There is actually an open issue. https://github.com/kotest/kotest/issues/1330
t

thanksforallthefish

04/29/2020, 7:33 AM
ah cool, did not see it 🙂