mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
Code analytics fix
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
b1d4850736
commit
8dbe86ab34
1 changed files with 6 additions and 2 deletions
|
@ -44,8 +44,12 @@ class LauncherActivityIT : AbstractIT() {
|
|||
scenario.onActivity { _ ->
|
||||
onIdleSync {
|
||||
onView(withId(R.id.ivSplash)).check(matches(isCompletelyDisplayed()))
|
||||
onView(withId(R.id.splashScreenBold)).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
|
||||
onView(withId(R.id.splashScreenNormal)).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
|
||||
onView(
|
||||
withId(R.id.splashScreenBold)
|
||||
).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
|
||||
onView(
|
||||
withId(R.id.splashScreenNormal)
|
||||
).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue