1
0
mirror of https://gitlab.shinice.net/pixeldroid/PixelDroid synced 2025-02-04 01:17:36 +01:00

fixed le test

This commit is contained in:
Ulysse Widmer 2020-03-06 19:25:17 +09:00
parent faf5a0838b
commit f8c6974a79

View File

@ -28,6 +28,7 @@ class ProfileTest {
@Test @Test
fun testAccountNameTextView() { fun testAccountNameTextView() {
onView(withId(R.id.button)).perform(click()) onView(withId(R.id.button)).perform(click())
onView(withId(R.id.accountName)).check(matches(withText("No Username"))) sleep((1000 * 5))
onView(withId(R.id.accountName)).check(matches(not(withText("No Username"))))
} }
} }