it('should not include platform search even with hash', () => {
   platformLocation.hash = '#hashPath';
   platformLocation.search = '?donotinclude';
   expect(locationStrategy.path()).toEqual('hashPath');
 });
 it('should not include platform search', () => {
   platformLocation.search = '?donotinclude';
   expect(locationStrategy.path()).toEqual('');
 });