Is there a gradle plugin to run and generate html/...
# javascript
g
Is there a gradle plugin to run and generate html/xml test reports for multiplatform javascript?
g
multiplatform javascript?
Kotlin uses JS test libraries to run tests for MPP projects on JS, and those libraries generate html reports (maybe also xml, not sure)
g
Currently the multiplatform plugin creates the task but does not run the JS test. I’ve seen workarounds that installs npm and mocha first in order to run the test.
g
Yes, this is hot it works now, you have to configure it
there are some solution that use node gradle plugin to install node and mocha automatically
also I saw some Gradle plugin from someone from community
so in general this is not a problem of test reports generation, rather preparation of test environment for JS
g
thanks!