Ihor Shamin
Ihor Shamin
As a workaround I use java reflection ```kotlin @Test fun `verify suspend spy`() = runBlocking { val spy = spyk Unit>() spy("test") coVerify { spy::class.java.getMethod("invoke", Any::class.java, Any::class.java) .invoke(spy, "test", any())...
I’m experiencing the same issue, and it seems that [this](https://github.com/libgdx/libgdx/pull/6745) PR actually resolves the ANR. Would it be possible to reconsider merging it?
@tommyettinger, I just created the same PR. Could you take a look when you have a chance? Thanks in advance! https://github.com/libgdx/libgdx/pull/7699