You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Espresso tests for the survey toolbar (testSettingsMenuItem and testSyncMenuItem) are failing on CircleCI due to NoMatchingViewException. These tests are currently annotated with @Ignore to allow other tests to pass.
The tests are in org.opendatakit.survey.logic.TestMainMenuActivity and these are the failure descriptions in CircleCI:
testSettingsMenuItem:androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: view.getId() is <2131361857/org.opendatakit.survey:id/action_settings>
testSyncMenuItem:androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: view.getId() is <2131361858/org.opendatakit.survey:id/action_sync>
Next Steps
Although the test checks if the Intent is properly formed, further investigation is needed to determine if it might be bug related issue.
Investigate why NoMatchingViewException is being thrown.
Fix the root cause and remove the @Ignore annotations from the tests.
The text was updated successfully, but these errors were encountered:
Description for PR-179
The Espresso tests for the survey toolbar (
testSettingsMenuItem
andtestSyncMenuItem
) are failing onCircleCI
due toNoMatchingViewException
. These tests are currently annotated with@Ignore
to allow other tests to pass.The tests are in
org.opendatakit.survey.logic.TestMainMenuActivity
and these are the failure descriptions in CircleCI:androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: view.getId() is <2131361857/org.opendatakit.survey:id/action_settings>
androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: view.getId() is <2131361858/org.opendatakit.survey:id/action_sync>
Next Steps
Although the test checks if the Intent is properly formed, further investigation is needed to determine if it might be bug related issue.
NoMatchingViewException
is being thrown.@Ignore
annotations from the tests.The text was updated successfully, but these errors were encountered: