Skip to content

Commit

Permalink
Grouped up the test
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarf committed Feb 24, 2011
1 parent 14e9da5 commit 71bd828
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions test/unit/ajax.js
Expand Up @@ -492,7 +492,7 @@ test(".ajax() - hash", function() {

test("jQuery ajax - cross-domain detection", function() {

expect( 4 );
expect( 5 );

var loc = document.location,
otherPort = loc.port === 666 ? 667 : 666,
Expand All @@ -507,6 +507,14 @@ test("jQuery ajax - cross-domain detection", function() {
}
});

jQuery.ajax({
url: 'app:/path',
beforeSend: function( _ , s ) {
ok( s.crossDomain , "Adobe AIR app:/ URL detected as cross-domain" );
return false;
}
});

jQuery.ajax({
dataType: "jsonp",
url: loc.protocol + '//somewebsitethatdoesnotexist-656329477541.com:' + ( loc.port || 80 ),
Expand Down Expand Up @@ -2239,18 +2247,6 @@ test("jQuery.ajax - active counter", function() {
ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );
});

test("jQuery.ajax - compatible with AIR urls"), function() {
expect( 1 );
stop();
$.ajax({
url: "app:/testing",
beforeSend: function() {
ok( this.crossDomain, "Detected crossDomain for AIR Url" );
return false;
}
});
});

}

//}

0 comments on commit 71bd828

Please sign in to comment.