it('should handle SUCCESS_NOTIFICATION', () => {
      let expectedState = [{ id: 1, message: 'hello', level: 'success', position: 'bl', show: true }];

      expect(reducer(undefined, { type: 'our-wedding-heroes/notifications/SUCCESS_NOTIFICATION', payload: { message: 'hello' } })).toEqual(expectedState);