Update other remote test URLs as well.
This commit is contained in:
parent
0fbac16dbe
commit
273822c138
|
@ -836,7 +836,7 @@ test("jQuery.ajax() - JSONP, Remote", function() {
|
||||||
test("jQuery.ajax() - script, Remote", function() {
|
test("jQuery.ajax() - script, Remote", function() {
|
||||||
expect(2);
|
expect(2);
|
||||||
|
|
||||||
var base = window.location.href.replace(/\?.*$/, "");
|
var base = window.location.href.replace(/[^\/]*$/, "");
|
||||||
|
|
||||||
stop();
|
stop();
|
||||||
|
|
||||||
|
@ -853,7 +853,7 @@ test("jQuery.ajax() - script, Remote", function() {
|
||||||
test("jQuery.ajax() - script, Remote with POST", function() {
|
test("jQuery.ajax() - script, Remote with POST", function() {
|
||||||
expect(3);
|
expect(3);
|
||||||
|
|
||||||
var base = window.location.href.replace(/\?.*$/, "");
|
var base = window.location.href.replace(/[^\/]*$/, "");
|
||||||
|
|
||||||
stop();
|
stop();
|
||||||
|
|
||||||
|
@ -876,7 +876,7 @@ test("jQuery.ajax() - script, Remote with POST", function() {
|
||||||
test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
|
test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
|
||||||
expect(2);
|
expect(2);
|
||||||
|
|
||||||
var base = window.location.href.replace(/\?.*$/, "");
|
var base = window.location.href.replace(/[^\/]*$/, "");
|
||||||
base = base.replace(/^.*?\/\//, "//");
|
base = base.replace(/^.*?\/\//, "//");
|
||||||
|
|
||||||
stop();
|
stop();
|
||||||
|
@ -991,7 +991,7 @@ test("jQuery.getJSON - Using Native JSON", function() {
|
||||||
test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
|
test("jQuery.getJSON(String, Function) - JSON object with absolute url to local content", function() {
|
||||||
expect(2);
|
expect(2);
|
||||||
|
|
||||||
var base = window.location.href.replace(/\?.*$/, "");
|
var base = window.location.href.replace(/[^\/]*$/, "");
|
||||||
|
|
||||||
stop();
|
stop();
|
||||||
jQuery.getJSON(url(base + "data/json.php"), function(json) {
|
jQuery.getJSON(url(base + "data/json.php"), function(json) {
|
||||||
|
|
Loading…
Reference in a new issue