if you want to wait on wall-clock time you can do ...
# squarelibraries
j
if you want to wait on wall-clock time you can do
withContext(Default) { delay(2.seconds) }
and then assert no events were received
👍 1
m
Yep, I basically did it. But I was scratching my head trying to find a better alternative. Thanks!