I'm getting a very puzzling problem... even though...
# kotest
d
I'm getting a very puzzling problem... even though I added the Micronaut extension, it seems like it's just being ignored...
Copy code
~~~ Kotest Configuration ~~~
...
-> Extensions
  - io.micronaut.test.extensions.kotest.MicronautKotestExtension
  - io.kotest.engine.extensions.SystemPropertyTagExtension
  - io.kotest.core.extensions.RuntimeTagExtension
  - io.kotest.engine.extensions.RuntimeTagExpressionExtension
-> Listeners
  - io.micronaut.test.extensions.kotest.MicronautKotestExtension
  - beforeAfterAllListener$1
s
what do you expect to happen that isn't happening
d
The injection isn't happening, and no logs... as if micronaut wasn't started...
s
try putting a debug point in the extension
d
It doesn't seem like gradle is downloading the sources..
It doesn't seem like it's possible to get those sources in Intellij... any other place to put a breakpoint? I also noticed that I was using the Intellij test runner, but I switched to Gradle and still didn't see it loading.
I think Micronaut needs already compiled modules for using compiled Advice annotations, so maybe that's why there aren't sources...
I had the wrong
@MicronautTest
annotation... it was the one from junit5, and I needed the one from the Kotest package 😳...
s
oops
at least that was sorted