is there any difference between kotest’s 5.8.0 and 5.8.1 in terms of eventually block. I see that once I update to 5.8.1 eventually blocks are failing even after changing from io.kotest.assertions.timing to io.kotest.assertions.nondeterministic
I changed from
eventually(5000.milliseconds(), 300.milliseconds())
to
eventuallyConfig {
duration = 5000.milliseconds()
interval = 300.milliseconds()
}
o I need to add some other config as well?
Tried changing to
eventually {
eventuallyConfig {
duration = 5000.milliseconds()
interval = 300.milliseconds()
}
}
but the eventually block is failing
New contributor
bharath154 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.