diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1283c8a618208..aa13f98b947ab 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -98,4 +98,5 @@ This list is manually curated to include valuable contributions by volunteers th | @nfmohit-wpmudev | | @noisysocks | @noisysocks | | @omarreiss | @omarreiss | -| @hedgefield | @hedgefield | \ No newline at end of file +| @hedgefield | @hedgefield | +| @hideokamoto | @hideokamoto | diff --git a/edit-post/components/header/more-menu/test/__snapshots__/index.js.snap b/edit-post/components/header/more-menu/test/__snapshots__/index.js.snap new file mode 100644 index 0000000000000..b4b682a24b1fd --- /dev/null +++ b/edit-post/components/header/more-menu/test/__snapshots__/index.js.snap @@ -0,0 +1,72 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`MoreMenu should match snapshot 1`] = ` + + +
+
+ + + + + + +
+
+
+
+`; diff --git a/edit-post/components/header/more-menu/test/index.js b/edit-post/components/header/more-menu/test/index.js new file mode 100644 index 0000000000000..83f9de19ba706 --- /dev/null +++ b/edit-post/components/header/more-menu/test/index.js @@ -0,0 +1,19 @@ +/** + * External dependencies + */ +import { mount } from 'enzyme'; + +/** + * Internal dependencies + */ +import MoreMenu from '../index'; + +describe( 'MoreMenu', () => { + it( 'should match snapshot', () => { + const wrapper = mount( + + ); + + expect( wrapper ).toMatchSnapshot(); + } ); +} );