I'm having troubles running my tests from IntelliJ...
# ktor
r
I'm having troubles running my tests from IntelliJ. They work fine in gradle, and seem to fail on my
mainWithDependencies
. If I use
withTestApplication({ main() })...
things work fine (failing on env setup stuff, but calling the method), but if I use
withTestApplication({ mainWithDependencies(...) })...
then I get
java.lang.NoSuchMethodError: com.ryanharter.ledger.MainKt.mainWithDependencies(...)
. Any ideas what might cause IJ test runner not to be able to find my extension function?