Effects: fix failing tests in IE8

This commit is contained in:
Timmy Willison
2015-07-08 13:31:09 -04:00
parent 7ee0feaca6
commit fe6afa8268
2 changed files with 7 additions and 5 deletions

View File

@@ -17,15 +17,16 @@ module( "animation", {
this.sandbox = sinon.sandbox.create();
this.clock = this.sandbox.useFakeTimers( startTime );
this._oldInterval = jQuery.fx.interval;
this._oldNow = jQuery.now;
jQuery.fx.step = {};
jQuery.fx.interval = 10;
jQuery.now = Date.now;
jQuery.now = Date.now || this._oldNow;
jQuery.Animation.prefilters = [ defaultPrefilter ];
jQuery.Animation.tweeners = { "*": [ defaultTweener ] };
},
teardown: function() {
this.sandbox.restore();
jQuery.now = Date.now;
jQuery.now = this._oldNow;
jQuery.fx.stop();
jQuery.fx.interval = this._oldInterval;
window.requestAnimationFrame = oldRaf;

View File

@@ -13,13 +13,14 @@ module( "tween", {
this.sandbox = sinon.sandbox.create();
this.clock = this.sandbox.useFakeTimers( 505877050 );
this._oldInterval = jQuery.fx.interval;
this._oldNow = jQuery.now;
jQuery.fx.step = {};
jQuery.fx.interval = 10;
jQuery.now = Date.now;
jQuery.now = Date.now || this._oldNow;
},
teardown: function() {
this.sandbox.restore();
jQuery.now = Date.now;
jQuery.now = this._oldNow;
jQuery.fx.stop();
jQuery.fx.interval = this._oldInterval;
window.requestAnimationFrame = oldRaf;
@@ -198,7 +199,7 @@ test( "jQuery.Tween - Element", function() {
ok( easingSpy.calledWith( 0.1, 0.1 * testOptions.duration, 0, 1, testOptions.duration ),
"...using jQuery.easing.linear with back-compat arguments" );
equal( parseFloat( testElement.style.height ).toFixed( 2 ), eased.toFixed( 2 ), "Set value" );
equal( Math.floor( parseFloat( testElement.style.height ) ), Math.floor( eased ), "Set value" );
tween.run( 1 );
equal( testElement.style.height, "0px", "Checking another value" );