I'm trying to use kotest with coroutines and robol...
# kotest
p
I'm trying to use kotest with coroutines and robolectric, so I have this simple test:
Copy code
@RobolectricTest
class RoboTest : StringSpec( {
    "test" {
        println(1111111)
        delay(500)
        println(22222)
        1 + 1 shouldBe 2
        println(3333)
    }
})
But it never finishes! It prints 11111 and then just hangs. Any idea why?
s
and it works if you take the annotation off ?
p
yes
then it's robo's issue, right?
s
I would imagine so yes
n
@Pitel would you be able to share your configuration? I'm trying to get my own robolectric setup going and I'm having a bit of trouble.