it('should change host and keep protocol and port', () => {
      const url = 'https://meteor-up.com';
      const expected = 'https://host.com';

      expect(utils.scrubUrl(url)).to.equal(expected);