If this is of help, I've loaded the modules into a...
# koin
a
If this is of help, I've loaded the modules into an individual test and I got the same result here:
Copy code
@Test
    fun `Load conferences successfully`() {
        startKoin {
            module {
                App.modules(context) + DataSource.modules +
                        Feature.modules + Repository.modules +  Service.modules
                scope<MainActivity> {
                    scoped { MainActivityViewModel }
                }
            }
        }

        val success = Result.Success(20201)
        getCurrentConferenceId(success)

        viewModel.loadConferences(false)
        verify(navigator, never()).navigateToError(from = Screen.SCHEDULE)
    }