I’d like to be able to test my routes set up for d...
# ktor
c
I’d like to be able to test my routes set up for delivering assets from my ktor server, as it depends on both the gradle script packaging them correctly and the routes being set up correctly. It seems like the jar that the tests are run against is doesn’t use the
jvmJar
task in my application’s build.gradle.kts as a starting point, so the assets are missing. Is there a reasonable way to get the test jar to more closely match? (it shouldn’t completely match, because test dependencies are bundled in).