-
Notifications
You must be signed in to change notification settings - Fork 554
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #1769: Re-enable previously failing skipped tests (Espresso only) #2683
Fix #1769: Re-enable previously failing skipped tests (Espresso only) #2683
Conversation
* testStateFragment_loadExp_continueToEndExploration_hasReturnToTopicButton() * testStateFragment_loadExp_changeConfiguration_continueToEnd_hasReturnToTopicButton() Leaving TODOs for oppia#1612 to fix them for Robolectric - similar TODOs are present for the parallel portrait tests.
@@ -809,7 +808,7 @@ class StateFragmentTest { | |||
} | |||
|
|||
@Test | |||
@Ignore("Currently failing due to a regression") // TODO(#1769): Re-enable. | |||
@RunOn(TestPlatform.ESPRESSO) // TODO(#1612): Enable for Robolectric. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note there are identical preexisting TODOs for adjacent tests, portrait versions of these two.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @yurilev. This LGTM.
I titled it "fix part of" because at the time I thought the discussion might lead to more action items. Renamed the pull request to not say "part of". The tests are still disabled for Robolectric, but that is covered by the TODOs for #1612. |
Thanks @yurilev. SGTM. |
Explanation
Fixes #1769: Re-enable previously failing skipped tests (Espresso only):
testStateFragment_loadExp_continueToEndExploration_hasReturnToTopicButton()
testStateFragment_loadExp_changeConfiguration_continueToEnd_hasReturnToTopicButton()
Tested on emulators locally.
Leaving TODOs for #1612 to fix them for Robolectric - similar TODOs are present for the parallel portrait tests.
Checklist