it('Update new category', () => {
     expect(dispatch).to.have.been.calledWith(categoryUpdated(updatedCategory));
 });
 handleUpdateCategory = category => {
     const { dispatch } = this.props;
     dispatch(categoryUpdated(category));
     dispatch(opened());
 }