Add unit test for fix to #7578.
This commit is contained in:
parent
8259efe734
commit
a2c2d68d7f
1 changed files with 13 additions and 2 deletions
|
@ -710,10 +710,10 @@ test("jQuery.getScript(String, Function) - no callback", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("jQuery.ajax() - JSONP, Local", function() {
|
test("jQuery.ajax() - JSONP, Local", function() {
|
||||||
expect(8);
|
expect(9);
|
||||||
|
|
||||||
var count = 0;
|
var count = 0;
|
||||||
function plus(){ if ( ++count == 8 ) start(); }
|
function plus(){ if ( ++count == 9 ) start(); }
|
||||||
|
|
||||||
stop();
|
stop();
|
||||||
|
|
||||||
|
@ -828,6 +828,17 @@ test("jQuery.ajax() - JSONP, Local", function() {
|
||||||
plus();
|
plus();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//#7578
|
||||||
|
jQuery.ajax({
|
||||||
|
url: "data/jsonp.php",
|
||||||
|
dataType: "jsonp",
|
||||||
|
beforeSend: function(){
|
||||||
|
strictEqual( this.cache, false, "cache must be false on JSON request" );
|
||||||
|
plus();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test("JSONP - Custom JSONP Callback", function() {
|
test("JSONP - Custom JSONP Callback", function() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue