UNPKG

@wordpress/editor

Version:
17 lines (15 loc) 414 B
/** * Internal dependencies */ import { togglePostTitleSelection } from '../actions'; describe( 'actions native', () => { describe( 'togglePostTitleSelection', () => { it( 'should return the TOGGLE_POST_TITLE_SELECTION action', () => { const result = togglePostTitleSelection( true ); expect( result ).toEqual( { type: 'TOGGLE_POST_TITLE_SELECTION', isSelected: true, } ); } ); } ); } );