Rename Login navigation components to Auth (#23)

This commit is contained in:
Caleb Derosier
2023-09-05 10:16:39 -05:00
committed by GitHub
parent 1749f4b1b6
commit 7878b70a47
4 changed files with 17 additions and 17 deletions

View File

@@ -16,11 +16,11 @@ class RootNavViewModelTests : BaseViewModelTest() {
}
@Test
fun `state should move from splash to login`() = runTest {
fun `state should move from splash to auth`() = runTest {
val viewModel = RootNavViewModel()
viewModel.stateFlow.test {
assert(awaitItem() is RootNavState.Splash)
assert(awaitItem() is RootNavState.Login)
assert(awaitItem() is RootNavState.Auth)
}
}
}