I think I have a better solution, I don't know why...
# announcements
d
I think I have a better solution, I don't know why I didn't think of it first 🙃:
Copy code
fun AbstractDescribeSpec.DescribeScope.coIt(name: String, test: suspend TestContext.(CoroutineScope) -> Unit) =
		it(name) { runBlocking { test(this) }}
...