@wordpress/edit-post
Version:
Edit Post module for WordPress.
18 lines (14 loc) • 293 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();
} );
} );