From 9bfc2f4f16c7710b19f4830071558a1e6d704b01 Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Fri, 26 Jun 2026 17:15:30 -0400 Subject: [PATCH] fix: add mock for network connected Signed-off-by: Brandon McAnsh --- .../src/test/kotlin/com/flipcash/app/auth/AuthManagerTest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/flipcash/shared/authentication/src/test/kotlin/com/flipcash/app/auth/AuthManagerTest.kt b/apps/flipcash/shared/authentication/src/test/kotlin/com/flipcash/app/auth/AuthManagerTest.kt index ec64beec8..169540947 100644 --- a/apps/flipcash/shared/authentication/src/test/kotlin/com/flipcash/app/auth/AuthManagerTest.kt +++ b/apps/flipcash/shared/authentication/src/test/kotlin/com/flipcash/app/auth/AuthManagerTest.kt @@ -71,6 +71,7 @@ class AuthManagerTest { Dispatchers.setMain(testDispatcher) every { userManager.state } returns userManagerState + every { networkConnectivityListener.isConnected } returns true coEvery { pushTokenProvider.getToken() } returns "fake-token" // Default stubs for methods called during login/createAccount success paths