Is it intentional that when using `it("some test d...
# kotest
d
Is it intentional that when using
it("some test description")
without the trailing lambda, the test should pass? Why should that behaviour be needed? I would have thought that at least for TDD -- it should fail... I use this form just to outline the tests I need to write, but one might easily forget to implement them if they pass...
s
so like
Copy code
class Foo : DescribeSpec({
   it("some test description")
}
?
d
Yeah
d
Yup. Thanks!