Sergio Delgado

Results 31 comments of Sergio Delgado

(Also, if it's not completely fixed, shouldn't the ticket stay open?)

I had something similar and it was resolved by using Idea 2022.2.1 Preview.

I've hit this as well :( Any work on this?

Seeing as a simple `assertIsDisplayed` fails because a `TODO()` right at the moment, I think it's obvious that UI testing is not currently available on desktop.

> @serandel Enough works for basic UI testing at the moment (you can verify that nodes with specific matchers exist in the composition using `assertExists()`) Looking at the number of...

I have something similar with koin 3.2.0-beta-1. This is my actual code: ``` class AndroidComicBookRepositoryTest : KoinTest { private val ctx = InstrumentationRegistry.getInstrumentation().context private val repo: AndroidComicBookRepository by inject {...

For my use case, `Dispatchers.Unconfined` wouldn't work, as some of my collectors have to be run in an OpenGL main thread. I assume that by point 2 if I do...

Thinking a bit more about this, what if I wanted all consumers to run in parallel and just block the producer, but no consumer should block any other? Can you...