diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-drag-and-drop.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-drag-and-drop.test.js index a62ee3c52f9559..104c1ca4d4cbfc 100644 --- a/packages/react-native-editor/__device-tests__/gutenberg-editor-drag-and-drop.test.js +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-drag-and-drop.test.js @@ -12,8 +12,9 @@ import { } from './helpers/utils'; import testData from './helpers/test-data'; -// Used to skip some tests on iOS -const onlyOnAndroid = isAndroid() ? it : it.skip; +// 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; describe( 'Gutenberg Editor Drag & Drop blocks tests', () => { beforeEach( async () => { diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js index 63be583561e4e0..615c9f26fbe6b8 100644 --- a/packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-paste.test.js @@ -25,7 +25,7 @@ describe( 'Gutenberg Editor paste tests', () => { await clearClipboard( editorPage.driver ); } ); - it( 'copies plain text from one paragraph block and pastes in another', async () => { + it.skip( 'copies plain text from one paragraph block and pastes in another', async () => { await editorPage.addNewBlock( blockNames.paragraph ); const paragraphBlockElement = await editorPage.getTextBlockAtPosition( blockNames.paragraph @@ -68,7 +68,7 @@ describe( 'Gutenberg Editor paste tests', () => { await editorPage.removeBlockAtPosition( blockNames.paragraph, 1 ); } ); - it( 'copies styled text from one paragraph block and pastes in another', async () => { + it.skip( 'copies styled text from one paragraph block and pastes in another', async () => { // Create paragraph block with styled text by editing html. await editorPage.setHtmlContent( testData.pasteHtmlText ); const paragraphBlockElement = await editorPage.getTextBlockAtPosition(