TIL you can trick IntelliJ into thinking any Gradl...
# kotest-contributors
image.png
s
I played around with that in my new gradle plugin
a
oh cool
was it useful?
I think it's a fun trick, but it's not a good idea to rely on an internal feature
s
It uses that to detect if you're running
gradle kotest
from intellj, or from the command line
and uses that to then pick the approrpriate output format (team city or our own cli logger)
worst case is they remove it, and you just get standard cli output
I'm ready to start putting up PRs for the new
gradle kotest
task along with the updated intellij plugin that allows you to run individual tests better (can do JS / Android in a future release) along with navigation to nested tests.
a
nice!
I've got something in my pocket for better handling of JS tests, so we don't have to rely on external test libraries
s
ok cool
I also put up a demo recently where we didn't use mocha or karma
and so it supported nested tests
there's a PR open for it but it's more a show and tell than anything that can be merged