I have some flaky tests. With JUnit I just use Int...
# kotest
r
I have some flaky tests. With JUnit I just use IntelliJ's runnier to repeat until failure. With Spock there's
@RepeatUntilFailure
. What's the Kotest equivalent?
r
a
but quite often we can refactor code/tests and they are not flaky anymore. if you share more info someone might help you with that
r
That's what I'm doing. To a) reproduce it and b) be sure it is no longer flaky I need to be able to run it repeatedly.
🆒 1