it('should dispatch a none-sticky notification action when using success type', () => {
      const notification = { message: 'some message', type: 'success' };
      const expected = { ...notification, sticky: false, link: undefined };

      testNotification({ notification, expected });