diff --git a/blocks/library/audio/test/__snapshots__/index.js.snap b/blocks/library/audio/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..96289bdbeb0ebf
--- /dev/null
+++ b/blocks/library/audio/test/__snapshots__/index.js.snap
@@ -0,0 +1,51 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/audio block edit matches snapshot 1`] = `
+
+
+
+ Select an audio file from your library, or upload a new one:
+
+
+
+ *** Mock(Media upload button) ***
+
+
+`;
diff --git a/blocks/library/audio/test/index.js b/blocks/library/audio/test/index.js
new file mode 100644
index 00000000000000..616372f874777a
--- /dev/null
+++ b/blocks/library/audio/test/index.js
@@ -0,0 +1,15 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+jest.mock( 'blocks/media-upload-button', () => () => '*** Mock(Media upload button) ***' );
+
+describe( 'core/audio', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/audio' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/button/test/__snapshots__/index.js.snap b/blocks/library/button/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..60a4909e58e170
--- /dev/null
+++ b/blocks/library/button/test/__snapshots__/index.js.snap
@@ -0,0 +1,22 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/button block edit matches snapshot 1`] = `
+
+
+
+
+ Add text…
+
+
+
+`;
diff --git a/blocks/library/button/test/index.js b/blocks/library/button/test/index.js
new file mode 100644
index 00000000000000..8e4fdf4979f539
--- /dev/null
+++ b/blocks/library/button/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/button', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/button' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/code/test/__snapshots__/index.js.snap b/blocks/library/code/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..ff100192b8158c
--- /dev/null
+++ b/blocks/library/code/test/__snapshots__/index.js.snap
@@ -0,0 +1,13 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/code block edit matches snapshot 1`] = `
+
+
+
+`;
diff --git a/blocks/library/code/test/index.js b/blocks/library/code/test/index.js
new file mode 100644
index 00000000000000..0e9fdffd6675f3
--- /dev/null
+++ b/blocks/library/code/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/code', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/code' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/cover-image/test/__snapshots__/index.js.snap b/blocks/library/cover-image/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..1c3b482fb5353b
--- /dev/null
+++ b/blocks/library/cover-image/test/__snapshots__/index.js.snap
@@ -0,0 +1,93 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/cover-image block edit matches snapshot 1`] = `
+
+
+
+ Drag image here or add from media library
+
+
+
+
+
+
+ Drop files to upload
+
+
+
+
+ *** Mock(Media upload button) ***
+
+
+`;
diff --git a/blocks/library/cover-image/test/index.js b/blocks/library/cover-image/test/index.js
new file mode 100644
index 00000000000000..16f3bcce0a5a1d
--- /dev/null
+++ b/blocks/library/cover-image/test/index.js
@@ -0,0 +1,15 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+jest.mock( 'blocks/media-upload-button', () => () => '*** Mock(Media upload button) ***' );
+
+describe( 'core/cover-image', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/cover-image' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/embed/test/__snapshots__/index.js.snap b/blocks/library/embed/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..859c0480b1089e
--- /dev/null
+++ b/blocks/library/embed/test/__snapshots__/index.js.snap
@@ -0,0 +1,46 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/embed block edit matches snapshot 1`] = `
+
+`;
diff --git a/blocks/library/embed/test/index.js b/blocks/library/embed/test/index.js
new file mode 100644
index 00000000000000..4713de801d2f1c
--- /dev/null
+++ b/blocks/library/embed/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/embed', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/embed' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/freeform/test/__snapshots__/index.js.snap b/blocks/library/freeform/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..2d88b1ee25fe11
--- /dev/null
+++ b/blocks/library/freeform/test/__snapshots__/index.js.snap
@@ -0,0 +1,14 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/freeform block edit matches snapshot 1`] = `
+Array [
+ ,
+ ,
+]
+`;
diff --git a/blocks/library/freeform/test/index.js b/blocks/library/freeform/test/index.js
new file mode 100644
index 00000000000000..52682119c6ea59
--- /dev/null
+++ b/blocks/library/freeform/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/freeform', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/freeform' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/gallery/test/__snapshots__/index.js.snap b/blocks/library/gallery/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..237a66a669cfac
--- /dev/null
+++ b/blocks/library/gallery/test/__snapshots__/index.js.snap
@@ -0,0 +1,94 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/gallery block edit matches snapshot 1`] = `
+
+
+
+ Drag images here or add from media library
+
+
+
+
+
+
+ Drop files to upload
+
+
+
+
+ *** Mock(Media upload button) ***
+
+
+`;
diff --git a/blocks/library/gallery/test/index.js b/blocks/library/gallery/test/index.js
new file mode 100644
index 00000000000000..96c958fa32e158
--- /dev/null
+++ b/blocks/library/gallery/test/index.js
@@ -0,0 +1,15 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+jest.mock( 'blocks/media-upload-button', () => () => '*** Mock(Media upload button) ***' );
+
+describe( 'core/gallery', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/gallery' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/heading/test/__snapshots__/index.js.snap b/blocks/library/heading/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..59d7b06f8c66a6
--- /dev/null
+++ b/blocks/library/heading/test/__snapshots__/index.js.snap
@@ -0,0 +1,18 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/heading block edit matches snapshot 1`] = `
+
+
+
+ Write heading…
+
+
+`;
diff --git a/blocks/library/heading/test/index.js b/blocks/library/heading/test/index.js
new file mode 100644
index 00000000000000..fa20e31292d9e0
--- /dev/null
+++ b/blocks/library/heading/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/heading', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/heading' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/html/test/__snapshots__/index.js.snap b/blocks/library/html/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..cd76f087961566
--- /dev/null
+++ b/blocks/library/html/test/__snapshots__/index.js.snap
@@ -0,0 +1,9 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/html block edit matches snapshot 1`] = `
+
+`;
diff --git a/blocks/library/html/test/index.js b/blocks/library/html/test/index.js
new file mode 100644
index 00000000000000..f4ef3e2b363233
--- /dev/null
+++ b/blocks/library/html/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/html', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/html' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/list/test/__snapshots__/index.js.snap b/blocks/library/list/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..b3a7b2530da6d0
--- /dev/null
+++ b/blocks/library/list/test/__snapshots__/index.js.snap
@@ -0,0 +1,20 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/list block edit matches snapshot 1`] = `
+
+`;
diff --git a/blocks/library/list/test/index.js b/blocks/library/list/test/index.js
new file mode 100644
index 00000000000000..1668762990b0a4
--- /dev/null
+++ b/blocks/library/list/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/list', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/list' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/more/test/__snapshots__/index.js.snap b/blocks/library/more/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..500ae5f763fc78
--- /dev/null
+++ b/blocks/library/more/test/__snapshots__/index.js.snap
@@ -0,0 +1,13 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/more block edit matches snapshot 1`] = `
+
+
+
+`;
diff --git a/blocks/library/more/test/index.js b/blocks/library/more/test/index.js
new file mode 100644
index 00000000000000..1f13406520beaa
--- /dev/null
+++ b/blocks/library/more/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/more', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/more' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/paragraph/test/__snapshots__/index.js.snap b/blocks/library/paragraph/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..fdd9ef065ba437
--- /dev/null
+++ b/blocks/library/paragraph/test/__snapshots__/index.js.snap
@@ -0,0 +1,28 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/paragraph block edit matches snapshot 1`] = `
+
+
+
+
+
+
+ Add text or type / to add content
+
+
+
+
+
+`;
diff --git a/blocks/library/paragraph/test/index.js b/blocks/library/paragraph/test/index.js
new file mode 100644
index 00000000000000..f0b7cf1659f488
--- /dev/null
+++ b/blocks/library/paragraph/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/paragraph', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/paragraph' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/preformatted/test/__snapshots__/index.js.snap b/blocks/library/preformatted/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..c950c9dab17895
--- /dev/null
+++ b/blocks/library/preformatted/test/__snapshots__/index.js.snap
@@ -0,0 +1,18 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/preformatted block edit matches snapshot 1`] = `
+
+`;
diff --git a/blocks/library/preformatted/test/index.js b/blocks/library/preformatted/test/index.js
new file mode 100644
index 00000000000000..70413a21704266
--- /dev/null
+++ b/blocks/library/preformatted/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/preformatted', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/preformatted' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/pullquote/test/__snapshots__/index.js.snap b/blocks/library/pullquote/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..dc0bb85986816f
--- /dev/null
+++ b/blocks/library/pullquote/test/__snapshots__/index.js.snap
@@ -0,0 +1,24 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/pullquote block edit matches snapshot 1`] = `
+
+
+
+`;
diff --git a/blocks/library/pullquote/test/index.js b/blocks/library/pullquote/test/index.js
new file mode 100644
index 00000000000000..74925c679092e1
--- /dev/null
+++ b/blocks/library/pullquote/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/pullquote', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/pullquote' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/quote/test/__snapshots__/index.js.snap b/blocks/library/quote/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..9e1db3b03f7fae
--- /dev/null
+++ b/blocks/library/quote/test/__snapshots__/index.js.snap
@@ -0,0 +1,24 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/quote block edit matches snapshot 1`] = `
+
+
+
+`;
diff --git a/blocks/library/quote/test/index.js b/blocks/library/quote/test/index.js
new file mode 100644
index 00000000000000..77be56ba416bb6
--- /dev/null
+++ b/blocks/library/quote/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/quote', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/quote' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/separator/test/__snapshots__/index.js.snap b/blocks/library/separator/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..2985274d75ea3c
--- /dev/null
+++ b/blocks/library/separator/test/__snapshots__/index.js.snap
@@ -0,0 +1,7 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/separator block edit matches snapshot 1`] = `
+
+`;
diff --git a/blocks/library/separator/test/index.js b/blocks/library/separator/test/index.js
new file mode 100644
index 00000000000000..53efab1ac71fb0
--- /dev/null
+++ b/blocks/library/separator/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/separator', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/separator' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/shortcode/test/__snapshots__/index.js.snap b/blocks/library/shortcode/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..47439a072ac453
--- /dev/null
+++ b/blocks/library/shortcode/test/__snapshots__/index.js.snap
@@ -0,0 +1,33 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/shortcode block edit matches snapshot 1`] = `
+
+
+
+
+`;
diff --git a/blocks/library/shortcode/test/index.js b/blocks/library/shortcode/test/index.js
new file mode 100644
index 00000000000000..97e9c0b4eae7cd
--- /dev/null
+++ b/blocks/library/shortcode/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/shortcode', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/shortcode' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/table/test/__snapshots__/index.js.snap b/blocks/library/table/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..6ae6bbc45bc289
--- /dev/null
+++ b/blocks/library/table/test/__snapshots__/index.js.snap
@@ -0,0 +1,31 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/embed block edit matches snapshot 1`] = `
+
+
+
+
+
+
+ |
+
+
+ |
+
+
+
+
+ |
+
+
+ |
+
+
+
+
+`;
diff --git a/blocks/library/table/test/index.js b/blocks/library/table/test/index.js
new file mode 100644
index 00000000000000..9f1456b6439a73
--- /dev/null
+++ b/blocks/library/table/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/embed', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/table' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/text-columns/test/__snapshots__/index.js.snap b/blocks/library/text-columns/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..f52ebfaf95c308
--- /dev/null
+++ b/blocks/library/text-columns/test/__snapshots__/index.js.snap
@@ -0,0 +1,44 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/text-columns block edit matches snapshot 1`] = `
+
+`;
diff --git a/blocks/library/text-columns/test/index.js b/blocks/library/text-columns/test/index.js
new file mode 100644
index 00000000000000..80abaf8e5d3343
--- /dev/null
+++ b/blocks/library/text-columns/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/text-columns', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/text-columns' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/verse/test/__snapshots__/index.js.snap b/blocks/library/verse/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..d47f3fdad11bf9
--- /dev/null
+++ b/blocks/library/verse/test/__snapshots__/index.js.snap
@@ -0,0 +1,18 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/verse block edit matches snapshot 1`] = `
+
+`;
diff --git a/blocks/library/verse/test/index.js b/blocks/library/verse/test/index.js
new file mode 100644
index 00000000000000..760898207c41c6
--- /dev/null
+++ b/blocks/library/verse/test/index.js
@@ -0,0 +1,13 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+describe( 'core/verse', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/verse' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/library/video/test/__snapshots__/index.js.snap b/blocks/library/video/test/__snapshots__/index.js.snap
new file mode 100644
index 00000000000000..c0999d5cfd04a4
--- /dev/null
+++ b/blocks/library/video/test/__snapshots__/index.js.snap
@@ -0,0 +1,51 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`core/video block edit matches snapshot 1`] = `
+
+
+
+ Select a video file from your library, or upload a new one:
+
+
+
+ *** Mock(Media upload button) ***
+
+
+`;
diff --git a/blocks/library/video/test/index.js b/blocks/library/video/test/index.js
new file mode 100644
index 00000000000000..0fc5831e5cdbcc
--- /dev/null
+++ b/blocks/library/video/test/index.js
@@ -0,0 +1,15 @@
+/**
+ * Internal dependencies
+ */
+import '../';
+import { blockEditRender } from 'blocks/test/helpers';
+
+jest.mock( 'blocks/media-upload-button', () => () => '*** Mock(Media upload button) ***' );
+
+describe( 'core/video', () => {
+ test( 'block edit matches snapshot', () => {
+ const wrapper = blockEditRender( 'core/video' );
+
+ expect( wrapper ).toMatchSnapshot();
+ } );
+} );
diff --git a/blocks/test/helpers/index.js b/blocks/test/helpers/index.js
new file mode 100644
index 00000000000000..3f6dda0bfd326b
--- /dev/null
+++ b/blocks/test/helpers/index.js
@@ -0,0 +1,23 @@
+/**
+ * External dependencie
+ */
+import { render } from 'enzyme';
+import { noop } from 'lodash';
+
+/**
+ * Internal dependencies
+ */
+import { createBlock, BlockEdit } from '../..';
+
+export const blockEditRender = ( name, initialAttributes = {} ) => {
+ const block = createBlock( name, initialAttributes );
+
+ return render(
+
+ );
+};