diff --git a/packages/react-native-editor/__device-tests__/gutenberg-editor-unsupported-blocks.test.js b/packages/react-native-editor/__device-tests__/gutenberg-editor-unsupported-blocks.test.js index d75b7ba4efd1e..a5520ac92a468 100644 --- a/packages/react-native-editor/__device-tests__/gutenberg-editor-unsupported-blocks.test.js +++ b/packages/react-native-editor/__device-tests__/gutenberg-editor-unsupported-blocks.test.js @@ -2,8 +2,12 @@ * Internal dependencies */ import testData from './helpers/test-data'; +import { isAndroid } from './helpers/utils'; -describe( 'Gutenberg Editor Unsupported Block Editor Tests', () => { +// Disabled for now on Android see https://github.com/wordpress-mobile/gutenberg-mobile/issues/5321 +const onlyOniOS = ! isAndroid() ? describe : describe.skip; + +onlyOniOS( 'Gutenberg Editor Unsupported Block Editor Tests', () => { it( 'should be able to open the unsupported block web view editor', async () => { await editorPage.setHtmlContent( testData.unsupportedBlockHtml );