From 1755406d31b182412aa00122a1a653155c27db73 Mon Sep 17 00:00:00 2001 From: Tangem Date: Thu, 11 Sep 2025 12:32:56 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../com/tangem/tap/routing/utils/DeepLinkFactoryTest.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/src/test/kotlin/com/tangem/tap/routing/utils/DeepLinkFactoryTest.kt b/app/src/test/kotlin/com/tangem/tap/routing/utils/DeepLinkFactoryTest.kt index dde88e9295..ea548398d0 100644 --- a/app/src/test/kotlin/com/tangem/tap/routing/utils/DeepLinkFactoryTest.kt +++ b/app/src/test/kotlin/com/tangem/tap/routing/utils/DeepLinkFactoryTest.kt @@ -12,6 +12,7 @@ import com.tangem.features.onramp.deeplink.SellDeepLinkHandler import com.tangem.features.onramp.deeplink.SwapDeepLinkHandler import com.tangem.features.send.v2.api.deeplink.SellRedirectDeepLinkHandler import com.tangem.features.staking.api.deeplink.StakingDeepLinkHandler +import com.tangem.features.tangempay.deeplink.OnboardVisaDeepLinkHandler import com.tangem.features.tokendetails.deeplink.TokenDetailsDeepLinkHandler import com.tangem.features.wallet.deeplink.PromoDeeplinkHandler import com.tangem.features.wallet.deeplink.WalletDeepLinkHandler @@ -73,6 +74,10 @@ class DeepLinkFactoryTest { every { create(any(), any()) } returns mockk() } + private val onboardVisaDeepLink = mockk(relaxed = true) { + every { create(any()) } returns mockk() + } + private val cardSdkProvider = mockk(relaxed = true) { every { sdk.uiVisibility() } returns MutableStateFlow(false) } @@ -97,6 +102,7 @@ class DeepLinkFactoryTest { sellDeepLink = sellDeepLinkFactory, swapDeepLink = swapDeepLinkFactory, promoDeepLink = promoDeepLinkFactory, + onboardVisaDeepLink = onboardVisaDeepLink, ) @OptIn(ExperimentalCoroutinesApi::class)