a basic small use case for which I cannot find a s...
# koin
r
a basic small use case for which I cannot find a solution. I got a ktor server using koin. I want to write a test, where I start ktor using
testApplication
and part of the ktor uses the normal
install(koin) {...}
approach for depencies Now I need to do
val myRepo: MyRepo by inject()
or something similar so I can set up my test scenario and run my test. However, how do I access an instance setup through the koin plugin for ktor?