so after upgrading to 0.24.0 my unit tests started...
# coroutines
u
so after upgrading to 0.24.0 my unit tests started failing due to
Copy code
java.lang.RuntimeException: Method myLooper in android.os.Looper not mocked. See <http://g.co/androidstudio/not-mocked> for details.

	at android.os.Looper.myLooper(Looper.java)
	at kotlinx.coroutines.experimental.android.MainLooperChecker.checkRunBlocking(HandlerContext.kt:124)
The tests are plain JVM unit tests and use
runBlocking
to test presenters
e
Yes. Disable it for tests. We’ll need to find a better long-term solution, though, for running tests.
u
alright, thanks