If I have: ```fun AbstractDescribeSpec.DescribeSco...
# announcements
d
If I have:
Copy code
fun AbstractDescribeSpec.DescribeScope.coIt(name: String, test: TestContext.(CoroutineScope) -> Unit) {
	context.registerTestCase(
			"Scenario: $name", 
			this@AbstractDescribeSpec, 
			{ runBlocking { test(this) } }, 
			this@AbstractDescribeSpec.defaultTestCaseConfig, 
			TestType.Test
	)
}
The
this@AbstractDescribeSpec
is red because I'm in
DescribeScope
, is there any way to refer to
AbstractDescribeSpec
?