@wordpress/edit-post
Version:
Edit Post module for WordPress.
20 lines (16 loc) • 298 B
JavaScript
/**
* External dependencies
*/
import { mount } from 'enzyme';
/**
* Internal dependencies
*/
import MoreMenu from '../index';
describe( 'MoreMenu', () => {
it( 'should match snapshot', () => {
const wrapper = mount(
<MoreMenu />
);
expect( wrapper ).toMatchSnapshot();
} );
} );