@gechiui/block-editor
Version:
31 lines (26 loc) • 591 B
JavaScript
/**
* External dependencies
*/
import { create, act } from 'react-test-renderer';
import { noop } from 'lodash';
/**
* Internal dependencies
*/
import ColorPaletteControl from '../control';
describe( 'ColorPaletteControl', () => {
it( 'matches the snapshot', async () => {
let root;
await act( async () => {
root = create(
<ColorPaletteControl
label="Test Color"
value="#f00"
colors={ [ { color: '#f00', name: 'red' } ] }
disableCustomColors={ false }
onChange={ noop }
/>
);
} );
expect( root.toJSON() ).toMatchSnapshot();
} );
} );