aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/effects.js
diff options
context:
space:
mode:
authorRichard Gibson <richard.gibson@gmail.com>2014-12-05 12:28:40 -0500
committerRichard Gibson <richard.gibson@gmail.com>2014-12-05 12:34:17 -0500
commit26276a307ce2f554b63a05ed8451155f01711c29 (patch)
tree81eb4c92a55f4c9a17d9925e84dccf9c4929741f /test/unit/effects.js
parent6748ba349650353c7bed6eec201a3192f6b2cae1 (diff)
downloadjquery-26276a307ce2f554b63a05ed8451155f01711c29.tar.gz
jquery-26276a307ce2f554b63a05ed8451155f01711c29.zip
Tests: Minor updates for QUnit 1.16 compatibility
More to come later. (cherry picked from commit f6f8848fbe477fa93fd27ac7f10885dd6e97f633)
Diffstat (limited to 'test/unit/effects.js')
-rw-r--r--test/unit/effects.js22
1 files changed, 12 insertions, 10 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js
index 356344477..99faa1438 100644
--- a/test/unit/effects.js
+++ b/test/unit/effects.js
@@ -45,7 +45,7 @@ test("show() basic", 2, function() {
// Clean up the detached node
div.remove();
- QUnit.expectJqData(hiddendiv, "olddisplay");
+ QUnit.expectJqData( this, hiddendiv, "olddisplay" );
});
test("show()", 27, function () {
@@ -92,7 +92,7 @@ test("show()", 27, function () {
});
// Tolerate data from show()/hide()
- QUnit.expectJqData(div, "olddisplay");
+ QUnit.expectJqData( this, div, "olddisplay" );
// #show-tests * is set display: none in CSS
jQuery("#qunit-fixture").append("<div id='show-tests'><div><p><a href='#'></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div><table id='test-table'></table>");
@@ -200,7 +200,7 @@ test("Persist correct display value", function() {
clock.tick( 300 );
- QUnit.expectJqData($span, "olddisplay");
+ QUnit.expectJqData( this, $span, "olddisplay" );
});
test("animate(Hash, Object, Function)", function() {
@@ -1077,7 +1077,8 @@ test("jQuery.show('fast') doesn't clear radio buttons (bug #1095)", function ()
test( "interrupt toggle", function() {
expect( 24 );
- var longDuration = 2000,
+ var env = this,
+ longDuration = 2000,
shortDuration = 500,
remaining = 0,
$elems = jQuery(".chain-test"),
@@ -1094,7 +1095,7 @@ test( "interrupt toggle", function() {
jQuery.data( this, "startVal", jQuery( this ).css( prop ) );
// Expect olddisplay data from our .hide() call below
- QUnit.expectJqData( this, "olddisplay" );
+ QUnit.expectJqData( env, this, "olddisplay" );
});
// Interrupt a hiding toggle
@@ -1499,7 +1500,8 @@ test( "User supplied callback called after show when fx off (#8892)", 2, functio
test( "animate should set display for disconnected nodes", function() {
expect( 18 );
- var methods = {
+ var env = this,
+ methods = {
toggle: [ 1 ],
slideToggle: [],
fadeIn: [],
@@ -1520,9 +1522,9 @@ test( "animate should set display for disconnected nodes", function() {
strictEqual( $divNone.show()[ 0 ].style.display, "block", "show() should change display if it already set to none" );
strictEqual( $divInline.show()[ 0 ].style.display, "inline", "show() should not change display if it already set" );
- QUnit.expectJqData( $divTest[ 0 ], "olddisplay" );
- QUnit.expectJqData( $divEmpty[ 0 ], "olddisplay" );
- QUnit.expectJqData( $divNone[ 0 ], "olddisplay" );
+ QUnit.expectJqData( env, $divTest[ 0 ], "olddisplay" );
+ QUnit.expectJqData( env, $divEmpty[ 0 ], "olddisplay" );
+ QUnit.expectJqData( env, $divNone[ 0 ], "olddisplay" );
jQuery.each( methods, function( name, opt ) {
jQuery.each([
@@ -1537,7 +1539,7 @@ test( "animate should set display for disconnected nodes", function() {
var callback = [function () {
strictEqual( this.style.display, "block", "set display to block with " + name );
- QUnit.expectJqData( this, "olddisplay" );
+ QUnit.expectJqData( env, this, "olddisplay" );
}];
jQuery.fn[ name ].apply( this, opt.concat( callback ) );