it('should dispatch a notification action without link', () => {
      const notification = { message: 'some message', type: 'some type' };
      const expected = { ...notification, sticky: true, link: undefined };

      testNotification({ notification, expected });