]> source.dussan.org Git - jquery.git/commitdiff
Enforce expects in ajax.js (https://github.com/jquery/2012-dev-summit/issues/53)...
authorJames Huston <james@jameshuston.net>
Mon, 15 Oct 2012 16:37:02 +0000 (12:37 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Mon, 15 Oct 2012 16:37:02 +0000 (12:37 -0400)
test/unit/ajax.js

index d78bca656fd37e24d66b515c5d5605f97260aa80..bdf2fbbd920b2ca08a89281e1190561510b9cb0b 100644 (file)
@@ -1879,6 +1879,8 @@ test("jQuery.post(String, Hash, Function) - simple with xml", function() {
 });
 
 test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
+       expect( 1 );
+
        stop();
 
        var passed = 0;
@@ -1913,6 +1915,8 @@ test("jQuery.ajaxSetup({timeout: Number}) - with global timeout", function() {
 });
 
 test("jQuery.ajaxSetup({timeout: Number}) with localtimeout", function() {
+       expect( 1 );
+
        stop();
        jQuery.ajaxSetup({timeout: 50});
 
@@ -1990,6 +1994,8 @@ test("custom timeout does not set error message when timeout occurs, see #970",
 */
 
 test("data option: evaluate function values (#2806)", function() {
+       expect( 1 );
+
        stop();
        jQuery.ajax({
                url: "data/echoQuery.php",
@@ -2006,6 +2012,8 @@ test("data option: evaluate function values (#2806)", function() {
 });
 
 test("data option: empty bodies for non-GET requests", function() {
+       expect( 1 );
+
        stop();
        jQuery.ajax({
                url: "data/echoData.php",
@@ -2153,6 +2161,7 @@ test("jQuery ajax - failing cross-domain", function() {
 });
 
 test("jQuery ajax - atom+xml", function() {
+       expect( 1 );
 
        stop();
 
@@ -2442,6 +2451,8 @@ test( "jQuery.domManip - script in comments are properly evaluated (#11402)", fu
 });
 
 test("jQuery.ajax - active counter", function() {
+       expect( 1 );
+       
        ok( jQuery.active === 0, "ajax active counter should be zero: " + jQuery.active );
 });