Are there tools for mutation testing that are comp...
# test
m
Are there tools for mutation testing that are compatible with kotlin native? Like for when writing KMP libraries I can not just use Pitest if I got it correct since it’s a JVM thing
c
you can use pitest on the jvm part of your multipart project.
m
Most of my code is not written only for the JVM part. It’s written in the common which is platform independent. I would love to keep my tests there instead of need to port it to another platform
c
You can keep the tests in common and run them with pitest on the jvm
🤔 1