Posthog: fix test. User consent must be provided to touch Posthog API.

This commit is contained in:
Benoit Marty 2023-01-30 14:17:16 +01:00
parent c8277e2d43
commit 307ac4060e
1 changed files with 2 additions and 0 deletions

View File

@ -97,6 +97,7 @@ class DefaultVectorAnalyticsTest {
@Test
fun `given lateinit user properties when valid analytics id updates then identify with lateinit properties`() = runTest {
fakeLateInitUserPropertiesFactory.givenCreatesProperties(A_LATE_INIT_USER_PROPERTIES)
fakeAnalyticsStore.givenUserContent(true)
fakeAnalyticsStore.givenAnalyticsId(AN_ANALYTICS_ID)
@ -106,6 +107,7 @@ class DefaultVectorAnalyticsTest {
@Test
fun `when signing out then resets posthog and closes Sentry`() = runTest {
fakeAnalyticsStore.allowSettingAnalyticsIdToCallBackingFlow()
fakeAnalyticsStore.givenUserContent(true)
defaultVectorAnalytics.onSignOut()