If anyone wants to try MPP support <https://kotest...
# kotest
s
If anyone wants to try MPP support https://kotest.io/docs/framework/multiplatform.html
s
Ping @AJ Alt for clikt 🙂
s
good call, I should try a PR to see how it works against clickt.
p
s
What's the error ?
Still the same as in the ticket ?
p
Well, ther is no error.
Copy code
class KotestTest : StringSpec({
    "Does it work?" {
        true.shouldBeFalse()
    }
})
This should fail, right? But I get no failed test (
BUILD SUCCESSFUL
).
I'm running
./gradlew check
.
s
yeah that should fail, let me check my build
that's ./gradlew check
ok I added in the other parts of your build and it disappears too
Copy code
tasks.withType<org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile> {
   kotlinOptions {
      freeCompilerArgs += "-Xir-property-lazy-initialization"
   }
}
This breaks it
p
Hmm, ok.
Yes, removing the lazy intialization makes it work.
s
Anton from the JB team put in that thread: P.S. Make sure 
-Xir-property-lazy-initialization
 is disabled
So I guess its rquired