Do you know a test runner which works for JVM, JS ...
# test
r
Do you know a test runner which works for JVM, JS and iOS (preferably further native targets) and supports some sort of dynamic tests à la
listOf(..).forEach { test("case $x") ... }
?
c
#kotest
r
Was my first guess as well but I don't see support for native here: https://kotest.io/docs/quickstart/ How does the setup look like?
c
I'm not sure, never used it for native. its probably best to ask in #kotest
btw i wrote a test runner too, its not yet multiplatform but it can run via a main method so it would be easy to port to multiplatform. https://github.com/christophsturm/failfast/
r
Do you also provide an integration for intellij?
c
it has a runner for junit platform, it works pretty well in idea.
and for js/native etc it should just work via main method. just need to seperate out the jvm dependencies
I didnt know that kotest supports native only for the assertion lib, getting failfast to run on multiplatform is probably much easier