You can do `runBlocking(JavaFx) {...}` to run your...
# coroutines
e
You can do
runBlocking(JavaFx) {...}
to run your code in UI thread and wait. Basically does the same, but it's already there. It also passes all exceptions that happen inside the block outside to your test and you have a coroutine inside the block so you can
receive
on queues,
join
to jobs and do any other suspending stuff.