Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Merge branch 'bump-android-test-dependencies'" #6453

Merged
merged 2 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,12 @@ class EditCustomListNameDialogTest {
// Arrange
val mockedUpdateName: (String) -> Unit = mockk(relaxed = true)
val inputText = "NEW NAME"
val state = EditCustomListNameUiState()
val state = EditCustomListNameUiState(name = inputText)
setContentWithTheme {
EditCustomListNameDialog(state = state, updateName = mockedUpdateName)
}

// Act
onNodeWithTag(EDIT_CUSTOM_LIST_DIALOG_INPUT_TEST_TAG).performTextInput(inputText)
onNodeWithText(SAVE_BUTTON_TEXT).performClick()

// Assert
Expand Down
14 changes: 7 additions & 7 deletions android/buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ object Versions {
const val appcompat = "1.7.0"
const val coreKtx = "1.12.0"
const val coreSplashscreen = "1.1.0-rc01"
const val espresso = "3.6.1"
const val espresso = "3.5.1"
const val lifecycle = "2.8.2"
const val fragmentTesting = "1.8.1"
const val test = "1.6.1"
const val testMonitor = "1.7.1"
const val testOrchestrator = "1.5.0"
const val testRunner = "1.6.1"
const val uiautomator = "2.4.0-alpha01"
const val fragmentTesting = "1.6.2"
const val test = "1.5.0"
const val testMonitor = "1.6.1"
const val testOrchestrator = "1.4.2"
const val testRunner = "1.5.2"
const val uiautomator = "2.3.0"
}

object Arrow {
Expand Down
Loading
Loading