Skip to content

Commit

Permalink
Adding missing parameter to screenshot test
Browse files Browse the repository at this point in the history
  • Loading branch information
cristhianescobar committed Aug 25, 2024
1 parent 9059f7d commit c8a57ce
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import io.newm.core.test.utils.SnapshotTest
import io.newm.core.test.utils.SnapshotTestConfiguration
import io.newm.feature.login.screen.welcome.WelcomeScreenUi
import io.newm.feature.login.screen.welcome.WelcomeScreenUiState
import io.newm.shared.public.analytics.NewmAppEventLogger
import org.junit.Test
import org.junit.runner.RunWith

Expand All @@ -20,7 +21,8 @@ class WelcomeScreenTest(
snapshot {
WelcomeScreenUi(
modifier = Modifier,
state = WelcomeScreenUiState { }
state = WelcomeScreenUiState { },
eventLogger = NewmAppEventLogger()
)
}
}
Expand Down

0 comments on commit c8a57ce

Please sign in to comment.