Compare commits

..

1 Commits

Author SHA1 Message Date
3e060c6e0e ci: Instrumentation tests coverage in ci.
Some checks failed
Check PR code / EspressoReports (pull_request) Failing after 47m12s
2025-03-20 12:42:09 +01:00
2 changed files with 6 additions and 4 deletions

View File

@ -275,9 +275,9 @@ val fetchScreenshotsTask =
reportsDirectory.mkdirs()
}
}
/*
tasks.whenTaskAdded {
if (this.name == "connectedAndroidTest") {
// this.finalizedBy(fetchScreenshotsTask)
this.finalizedBy(fetchScreenshotsTask)
}
}*/
}

View File

@ -93,9 +93,11 @@ class SettingsActivityTest : WithANRException() {
onView(withText(R.string.translation)).check(matches(isDisplayed()))
}
/*
Fails after adding tasks.whenTaskAdded
@Test
fun testAbout() {
onView(withText(R.string.action_about)).perform(click())
onView(withText("ACRA")).check(matches(isDisplayed()))
}
}*/
}