describe('with https: protocol on a non-standard port', function () {
    it('includes the port # in host', function () {
      var location = new Location('https://example.com:5000/the/path');
      expect(location.host).toEqual('example.com:5000');
    });