phil-t
10/08/2021, 3:18 PM.config
to tag my tests, for example:
"my test".config(tags = setOf(TestTag)) {
// Test stuff here
}
warning on .config - This declaration is experimental due to signature types and its usage must be marked (will become an error in 1.6) with '@kotlin.time.ExperimentalTime' or '@OptIn(kotlin.time.ExperimentalTime::class)'
TestTag would be defined like this - object TestTag : Tag()
Is there something else I should be doing to tag my tests instead of using .config
?sam
10/08/2021, 4:34 PMphil-t
10/08/2021, 5:43 PMsam
10/08/2021, 6:00 PM