]> source.dussan.org Git - jquery.git/commitdiff
Remove duplicate expect. Add QUnit.config.requireExpects to testrunner.js QUnit confi...
authorRick Waldron <waldron.rick@gmail.com>
Mon, 15 Oct 2012 16:31:27 +0000 (12:31 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Mon, 15 Oct 2012 16:31:27 +0000 (12:31 -0400)
test/data/testrunner.js
test/unit/css.js

index 2a4cbf4e64a4c8b44a926e443e05b0f4facc971b..ef3a5556809e273fd8919e5e78330dec644d5a78 100644 (file)
@@ -156,6 +156,9 @@ function testSubproject( label, url, risTests ) {
 // and start()'s the next test.
 QUnit.config.testTimeout = 20 * 1000; // 20 seconds
 
+// Enforce an "expect" argument or expect() call in all test bodies.
+QUnit.config.requireExpects = true;
+
 /**
  * Load the TestSwarm listener if swarmURL is in the address.
  */
index e385f03bc3d6f20385936ae376d0ecf8e90fdfcd..894ef6a4822c5768557d0fd934538deb62f9c8dd 100644 (file)
@@ -782,7 +782,7 @@ if ( jQuery.fn.offset ) {
        });
 }
 
-test("Do not append px to 'fill-opacity' #9548", 1, function() {
+test("Do not append px to 'fill-opacity' #9548", function() {
        expect( 1 );
 
        var $div = jQuery("<div>").appendTo("#qunit-fixture").css("fill-opacity", 1);
@@ -791,7 +791,7 @@ test("Do not append px to 'fill-opacity' #9548", 1, function() {
 
 test("css('width') and css('height') should respect box-sizing, see #11004", function() {
        expect( 4 );
-       
+
        var el_dis = jQuery("<div style='width:300px;height:300px;margin:2px;padding:2px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;'>test</div>"),
                el = el_dis.clone().appendTo("#qunit-fixture");