Hello good ppl, is there any difference between `k...
# kotest
s
Hello good ppl, 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
Copy code
eventually(5000.milliseconds(), 300.milliseconds())
to
Copy code
eventuallyConfig {
      duration = 5000.milliseconds()
      interval = 300.milliseconds()
}
Do I need to add some other config as well?
s
Works for me in both variants. Do you a have a full reproducer ?
s
let me try to recreate it using bare minimum stuff