Is `withData` working as intended with regards to ...
# kotest-contributors
e
Is
withData
working as intended with regards to test-lifecycles? This test will never print
Hello
, for instance
Copy code
class SomeTest : FunSpec(
   {
      beforeEach { println("Hello") }

      context("some data test") {
         withData("World", "Foo", "Bar") { x ->
            println(x)
         }
      }
   }
)
s
whcih version
e
5.0.0.M3
s
beforeEach is only leaf tests and withData is container tests. I will make all this clear in docs.
e
Thanks 🙌