<@U0ZFBBUBU> You should avoid writing functions th...
# coroutines
e
@groostav You should avoid writing functions that start coroutines but do not return any handle to them.
kotlix.coroutines
has
launch
builder that returns
Job
. You should return a job. Then, when you write a test, you can
.join()
it.
👍 1