Well, with `4.8.1` for test ``` class MyTest : Fre...
# kotlintest
m
Well, with
4.8.1
for test
Copy code
class MyTest : FreeSpec({

  "String.length" - {
    "should return the length of the string" {
      "sammy".length shouldBe 10
    }
  }
})
I got this:
Copy code
mypackage.MyTest > should return the length of the string FAILED
    org.opentest4j.AssertionFailedError at MyTest.kt:10

mypackage.MyTest > String.length FAILED
    org.opentest4j.AssertionFailedError at MyTest.kt:10

2 tests completed, 2 failed