With the 6.0.0.M1, what has changed for `AbstractP...
# kotest
o
With the 6.0.0.M1, what has changed for
AbstractProjectConfig()
? I’ve read the docs, and introduced kotest.properties file but it doesn’t seem to be picked up by the runner.
s
It needs to follow a specific FQN
o
How can I solve it with less repetition/configuration edit in a large project that has multiple modules and each of them has a ProjectConfig?
I am not sure if there is an easy way to do it but, ended up editing all build.gradle.kts and adding
kotest.framework.config.fqn
, according to the module and config class:
Copy code
tasks.test.configure {
  systemProperty("kotest.framework.config.fqn", "com.stove.ktor.example.e2e.Stove")
}
For those who wonder: https://github.com/Trendyol/stove/pull/668