Skip to content

Commit

Permalink
[Mobile] - Disable Unsupported Block Editor Tests (Android) (#46542)
Browse files Browse the repository at this point in the history
* Mobile - Disable Unsupported Block Editor Tests

* Mobile - Enable Gutenberg Editor Unsupported Block Editor Tests for iOS only
  • Loading branch information
Gerardo Pacheco authored and dmsnell committed Dec 15, 2022
1 parent 77ca69b commit ba10498
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 );

Expand Down

0 comments on commit ba10498

Please sign in to comment.