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

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