Skip to content

Instantly share code, notes, and snippets.

@JoseAlcerreca
Created May 24, 2019 12:31
Show Gist options
  • Save JoseAlcerreca/160e6b20cbcf4a0932649eba1d4f330b to your computer and use it in GitHub Desktop.
Save JoseAlcerreca/160e6b20cbcf4a0932649eba1d4f330b to your computer and use it in GitHub Desktop.
suspend fun getTask(taskId: String): Result<Task> {
EspressoIdlingResource.increment() // Set app as busy.
// Get off the main thread or suspend
return withContext(ioDispatcher) { …
EspressoIdlingResource.decrement() // Set app as idle.
return@withContext data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment