@wordpress/e2e-tests
Version:
Test plugins and mu-plugins for E2E tests in WordPress.
20 lines (17 loc) • 414 B
JavaScript
( 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
);
},
} );
} )();