For the project here:
I am trying to demonstrate refactoring duplicate, platform independent code into a common module, leaving regular modules for a very minimal set of platform dependent code. It looks like with the latest IntelliJ idea, this mostly works out of the box, but I notice that the while the JVM tests run fine, the JavaScript tests do not. I have looked at some examples online of getting javascript tests to run, but they all either seem much more complicated than they need to be, or do not run at all with the “gradle test” command.
Can someone point me in the right direction to get this project minimally set up to run JavaScript tests? I think this would be a huge selling point to convince others to use Kotlin, and I don’t want to overwhelm people with any more complexity than absolutely necessary.
I have already read through https://kotlinlang.org/docs/reference/multiplatform.html and didn’t see any steps I missed.