i had an idea for coroutines support, take this ex...
# strikt
c
i had an idea for coroutines support, take this example code:
Copy code
@Test
  fun blahTest() = runBlocking {
    expect {
      suspendMethod()
    }
  }
  suspend fun suspendMethod() {
    
  }
this works if expect is changed to
inline
. that way you can call your suspend methods in the expect block, without any coroutines dependency in strikt