-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
[RNMobile] Temporarily skip failing copy/paste tests #46340
Conversation
Size Change: 0 B Total Size: 1.32 MB ℹ️ View Unchanged
|
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.
LGTM! Thanks for adding this fix. 🚀
// Tests associated with this const are temporarily off for both platforms due to failures. | ||
// They should be enabled for Android-only when a fix is in place. | ||
const onlyOnAndroid = it.skip; |
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.
@SiobhyB @derekblank I feel it can be a bit misleading that we keep calling the constant onlyOnAndroid
when we are skipping the test on both platforms 😅. Maybe we could directly use it.skip
on those tests and add this comment as a reference that we'll re-enable them in the future when we provide a fix.
What?
This PR manually skips some E2E tests that are currently failing.
Why?
The following E2E tests have been failing since #45235 was merged into
trunk
:Despite the fact that these tests are failing, copy/paste appears to still be working as expected. To verify this, a test build can be found at wordpress-mobile/WordPress-Android#17612.
While we work on a more permanent fix for the E2E tests, this PR will temporarily skip them in the interest of reducing the noise that's coming from these incorrect failures.
How?
.skip
is called in order to achieve what we want. The plan is for this to be a temporary solution while we work towards a more permanent fix.Testing Instructions
With this branch checked out, verify that the tests pass via the following commands:
npm run native test:e2e:android:local gutenberg-editor-paste
npm run native test:e2e:android:local gutenberg-editor-drag-and-drop
It would also be useful to verify that these failures are in fact false by manually testing the installable build available at wordpress-mobile/WordPress-Android#17612.