]> source.dussan.org Git - jquery-ui.git/commitdiff
Effects: Use new has/lacksClasses assertions for all class checks
authorAlexander Schmitz <arschmitz@gmail.com>
Tue, 3 Feb 2015 00:35:16 +0000 (19:35 -0500)
committerAlexander Schmitz <arschmitz@gmail.com>
Wed, 11 Mar 2015 20:05:39 +0000 (16:05 -0400)
tests/unit/effects/effects.html
tests/unit/effects/effects_core.js

index a092ce04bcf8e80849d55c6267bdedc613a2f5a7..352224a7b99dbda04773c12329e92188ea0c0da8 100644 (file)
@@ -9,6 +9,7 @@
        <script src="../../../external/qunit/qunit.js"></script>
        <script src="../../../external/jquery-simulate/jquery.simulate.js"></script>
        <script src="../testsuite.js"></script>
+       <script src="../../../external/qunit-assert-classes/qunit-assert-classes.js"></script>
        <script>
        TestHelpers.loadResources({
                js: [
index 0c4e5574fb9501cb1fcb003fc3e97f1edf8062af..346e404c25ca48fedbf41fd5b3f473043560fd2a 100644 (file)
@@ -182,13 +182,14 @@ asyncTest( "animateClass clears style properties when stopped", function() {
        start();
 });
 
-asyncTest( "animateClass: css and class changes during animation are not lost (#7106)", function() {
+asyncTest( "animateClass: css and class changes during animation are not lost (#7106)",
+function( assert ) {
        expect( 2 );
        var test = $( "div.ticket7106" );
 
        // ensure the class stays and that the css property stays
        function animationComplete() {
-               ok( test.hasClass( "testClass" ), "class change during animateClass was not lost" );
+               assert.hasClasses( test, "testClass", "class change during animateClass was not lost" );
                equal( test.height(), 100, "css change during animateClass was not lost" );
                start();
        }