I have following function used for periodic refres...
# coroutines
m
I have following function used for periodic refresh:
Copy code
private fun startPeriodicRefresh() {
    jobs += launchUI {
        while (true) {
            delay(AUTO_REFRESH_TIME_MS)
            refreshList()
        }
    }
}
Any idea how I might unit test it?