Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-08 12:36:38 +03:00
parent 6178034e71
commit a30eeb4f5d
7 changed files with 161 additions and 8 deletions

View file

@ -80,9 +80,12 @@ abstract class BaseTestCase : TestCase(
) = before {
hiltRule.inject()
runBlocking {
appPreferencesStore.editData { mutablePreferences -> mutablePreferences.set(
key = PreferencesKeys.NOTIFICATIONS_USER_ALLOW_SEND_ADDRESSES_KEY, value = false
) }
appPreferencesStore.editData { mutablePreferences ->
mutablePreferences.set(
key = PreferencesKeys.NOTIFICATIONS_USER_ALLOW_SEND_ADDRESSES_KEY,
value = false
)
}
}
apiEnvironmentRule.setup(apiConfigsManager)
ActivityScenario.launch(MainActivity::class.java)