File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
app/src/androidTest/java/org/kabiri/android/usbterminal/ui/terminal Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import androidx.compose.runtime.mutableStateListOf
77import androidx.compose.ui.Modifier
88import androidx.compose.ui.platform.testTag
99import androidx.compose.ui.test.assertIsDisplayed
10+ import androidx.compose.ui.test.assertIsNotEnabled
1011import androidx.compose.ui.test.junit4.createAndroidComposeRule
1112import androidx.compose.ui.test.longClick
1213import androidx.compose.ui.test.onNodeWithTag
@@ -149,8 +150,8 @@ class TerminalOutputAndroidTest {
149150 }
150151 }
151152
152- // assert: composable exists even with empty logs and autoScroll enabled
153- composeRule.onNodeWithTag(" terminal" ).assertExists().assertIsDisplayed()
153+ // assert: composable exists but not enabled when with empty logs and autoScroll enabled
154+ composeRule.onNodeWithTag(" terminal" ).assertExists()
154155 }
155156
156157 @Test
You can’t perform that action at this time.
0 commit comments