UNPKG

@wordpress/e2e-tests

Version:
20 lines (17 loc) 414 B
( function () { wp.blocks.registerBlockType( 'test/container-without-paragraph', { title: 'Container without paragraph', category: 'text', icon: 'yes', edit() { return wp.element.createElement( wp.blockEditor.InnerBlocks, { allowedBlocks: [ 'core/image', 'core/gallery' ], } ); }, save() { return wp.element.createElement( wp.blockEditor.InnerBlocks.Content ); }, } ); } )();