Yet another question, is it possible to configure ...
# kotest
d
Yet another question, is it possible to configure the individual data tests (
withData
) with a specific timeout.
For now, I'm configuring the containing
context(...)
with a global timeout. I'm wondering if I can do better.
s
@Jim mentioned adding config support to withData, but what you're doing right now is the best option. Or you can roll your roll data tests:
listOf(1,2,3).foreach { test("my test").config(...) { }
👍 1
j
Ah!
we don't have a issue for this do we?
s
I don't think so
j
ok i'll make one 👍
Looks like there's a new concept of UnresolvedTestConfig so I'll have to look into that and figure out how to interact with it
s
Unresolved test config is just test config but before the test is executed
j
Ah makes sense