Hello! Is there any possibility to run test in sup...
# coroutines
p
Hello! Is there any possibility to run test in supend test function?
Copy code
class Test{
  @Test
  suspend test() {
    // test logic with suspend calls
  }
}
j
On JVM you can use that library indeed. Otherwise, this is not supported yet, but you can upvote the issue here: https://youtrack.jetbrains.com/issue/KT-22228 There is also a workaround there.