Guys, I have an edge case in my tests, where I wan...
# coroutines
v
Guys, I have an edge case in my tests, where I want to catch and assert exceptions thrown in 1. CoroutineExceptionHandler 2. Completion handlers of any coroutines I only need this for tests to see if an exception in an exception handler will crash the app, but it seems that coroutines propagate those extensions and crash the test itself no matter how much or what I wrap the test scope with. Is there an api to forcefully catch any exceptions in a scope, be it completion handler or anything else? The example of such test is here