I am running Kotlin 1.2 and am converting my project to a multiplatform project. (I was luckily developing with that goal in mind)
I have developed unit tests in the common module. They all succeed when I run tests in gradle from the JVM module.
I notice that the tests in the common module are not detected by Intellij. Currently it shows my tests as unused code and it does not show run buttons on the side. I want to be able to run separate unit tests to work on them or debug them. I can understand that they need to be able to be run from a context of an implementing module/platform so I then expect to be able to select that target in a menu when I press run. Is this already possible and am I doing something wrong with my setup or is this a future feature for intellij?