Hi, I'm using Kotest and I'am happy with it. Now, I'd like to run my tests multiple times with different configurations. How can I do that without hard copying the tests? E.g. my tests typically look like this - any hints would be great!
Copy code
class Tests : StringSpec(
{
val client = // client definition from a resource file - I'd like to do the same tests with another resource file
"my test" {
... test implementation using client
}