Revert "add url pathName in toQueryString function - fixes (https://github.com/jasmine/jasmine/issues/1906 ) + comment + test"

Reverted because it breaks the option checkboxes in the HTML reporter, both
in the standalone distribution and in jasmine-browser-runner.

Reopens #1906.

This reverts commit 1e4f0d1545.
This commit is contained in:
Steve Gravrock
2021-06-28 12:39:36 -07:00
parent ec038273f1
commit ee88ecc614
3 changed files with 2 additions and 23 deletions

View File

@@ -810,10 +810,7 @@ jasmineRequire.QueryString = function() {
encodeURIComponent(prop) + '=' + encodeURIComponent(paramMap[prop])
);
}
// include getWindowLocation() to fix issue with karma-jasmine-html-reporter in angular: see https://github.com/jasmine/jasmine/issues/1906
return (
(options.getWindowLocation().pathname || '') + '?' + qStrPairs.join('&')
);
return '?' + qStrPairs.join('&');
}
function queryStringToParamMap() {

View File

@@ -48,21 +48,6 @@ describe('QueryString', function() {
expect(result).toMatch(/foo=bar/);
expect(result).toMatch(/baz=quux/);
});
it('includes url pathname with the query string including the given key/value pair', function() {
var windowLocation = {
pathname: 'debug.html',
search: '?foo=bar'
},
queryString = new jasmineUnderTest.QueryString({
getWindowLocation: function() {
return windowLocation;
}
});
var result = queryString.fullStringWithNewParam('baz', 'quux');
expect(result).toBe('debug.html?foo=bar&baz=quux');
});
});
describe('#getParam', function() {

View File

@@ -26,10 +26,7 @@ jasmineRequire.QueryString = function() {
encodeURIComponent(prop) + '=' + encodeURIComponent(paramMap[prop])
);
}
// include getWindowLocation() to fix issue with karma-jasmine-html-reporter in angular: see https://github.com/jasmine/jasmine/issues/1906
return (
(options.getWindowLocation().pathname || '') + '?' + qStrPairs.join('&')
);
return '?' + qStrPairs.join('&');
}
function queryStringToParamMap() {