Hello! Trying to write data-driven-tests as descri...
# kotest
d
Hello! Trying to write data-driven-tests as described in the manual, but none of the below finds
withData
, unresolved reference. Was there an api change? This is
5.1.0
Copy code
class JobFlowCombinatorsTest : ShouldSpec({
  context("state merging") {
    withData() {}
  }
  should("correctly combine states") {
    withData() {}
  }
})
s
Have you added kotest-framework-datatest module ?
d
oops. Indeed I haven't, sorry for the noise! 🙂
s
no problem, it's in the docs but not super clear
I'll make it a big loud box
K 1
Before
Now
d
Great! thanks!