fixed le test

This commit is contained in:
Ulysse Widmer 2020-03-06 19:25:17 +09:00
parent faf5a0838b
commit f8c6974a79
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ class ProfileTest {
@Test
fun testAccountNameTextView() {
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"))))
}
}