Or rather, what would be an idiomatic way to descr...
# getting-started
s
Or rather, what would be an idiomatic way to describe some expectations that need to be fulfilled in the test, within a certain timeout?
d
There’s a library called awaitility which performs assertions that are expected to happen within an expected time window (http://www.awaitility.org/ - > has a kotlin support module too: https://github.com/awaitility/awaitility/wiki/Kotlin) For more idiomatic kotlin style test frameworks, I’d check out things like kotlintest, Kluent, Spek framework
👍 1