Great news! Much thanks to <@U2JKKPMEE> for provid...
# koin
a
Great news! Much thanks to @arnaud.giuliani for providing pointers here, but we found the proper implementation to make this work - of course, I have some other errors to fix, but this is much closer to the proper setup:
Copy code
@get:Rule
    val koinTestRule = KoinTestRule.create {
        printLogger(Level.DEBUG)
        androidContext(mock())
        modules(
        App.modules() +
                DataSource.modules(TWITTER_API_KEY, TWITTER_API_SECRET) +
                Feature.modules +
                Repository.modules +
                Service.modules(BASE_URL)
        )
    }
👍 2
💪 2