it('should keep port, path, and hash', () => {
      const url = 'https://meteor-up.com:3000/docs#plugins';
      const expected = 'https://host.com:3000/docs#plugins';

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