Skip to content

Commit

Permalink
Remove reducer test
Browse files Browse the repository at this point in the history
  • Loading branch information
talldan committed Aug 20, 2021
1 parent fb569b6 commit 82d0bb0
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions packages/edit-post/src/store/test/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,18 +152,6 @@ describe( 'state', () => {
expect( state.editorMode ).toBe( 'text' );
} );

it( 'should toggle a feature flag', () => {
const state = preferences(
deepFreeze( { features: { chicken: true } } ),
{
type: 'TOGGLE_FEATURE',
feature: 'chicken',
}
);

expect( state.features ).toEqual( { chicken: false } );
} );

describe( 'hiddenBlockTypes', () => {
it( 'concatenates unique names on disable', () => {
const original = deepFreeze( {
Expand Down

0 comments on commit 82d0bb0

Please sign in to comment.