hello, did anyone notice failing tests being repor...
# kotest
t
hello, did anyone notice failing tests being reported more than once?
Copy code
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
@thanksforallthefish There is actually an open issue. https://github.com/kotest/kotest/issues/1330
t
ah cool, did not see it 🙂