@@ -5,7 +5,8 @@ if ( !jQuery.fx ) {
5
5
return ;
6
6
}
7
7
8
- var oldRaf = window . requestAnimationFrame ,
8
+ var fxInterval = 13 ,
9
+ oldRaf = window . requestAnimationFrame ,
9
10
defaultPrefilter = jQuery . Animation . prefilters [ 0 ] ,
10
11
defaultTweener = jQuery . Animation . tweeners [ "*" ] [ 0 ] ,
11
12
startTime = 505877050 ;
@@ -15,17 +16,14 @@ QUnit.module( "animation", {
15
16
beforeEach : function ( ) {
16
17
this . sandbox = sinon . createSandbox ( ) ;
17
18
this . clock = this . sandbox . useFakeTimers ( startTime ) ;
18
- this . _oldInterval = jQuery . fx . interval ;
19
19
window . requestAnimationFrame = null ;
20
20
jQuery . fx . step = { } ;
21
- jQuery . fx . interval = 10 ;
22
21
jQuery . Animation . prefilters = [ defaultPrefilter ] ;
23
22
jQuery . Animation . tweeners = { "*" : [ defaultTweener ] } ;
24
23
} ,
25
24
afterEach : function ( ) {
26
25
this . sandbox . restore ( ) ;
27
26
jQuery . fx . stop ( ) ;
28
- jQuery . fx . interval = this . _oldInterval ;
29
27
window . requestAnimationFrame = oldRaf ;
30
28
return moduleTeardown . apply ( this , arguments ) ;
31
29
}
@@ -36,7 +34,7 @@ QUnit.test( "Animation( subject, props, opts ) - shape", function( assert ) {
36
34
37
35
var subject = { test : 0 } ,
38
36
props = { test : 1 } ,
39
- opts = { queue : "fx" , duration : 100 } ,
37
+ opts = { queue : "fx" , duration : fxInterval * 10 } ,
40
38
animation = jQuery . Animation ( subject , props , opts ) ;
41
39
42
40
assert . equal (
@@ -59,14 +57,14 @@ QUnit.test( "Animation( subject, props, opts ) - shape", function( assert ) {
59
57
assert . deepEqual ( animation . props , props , ".props is a copy of the original" ) ;
60
58
61
59
assert . deepEqual ( animation . opts , {
62
- duration : 100 ,
60
+ duration : fxInterval * 10 ,
63
61
queue : "fx" ,
64
62
specialEasing : { test : undefined } ,
65
63
easing : jQuery . easing . _default
66
64
} , ".options is filled with default easing and specialEasing" ) ;
67
65
68
66
assert . equal ( animation . startTime , startTime , "startTime was set" ) ;
69
- assert . equal ( animation . duration , 100 , ".duration is set" ) ;
67
+ assert . equal ( animation . duration , fxInterval * 10 , ".duration is set" ) ;
70
68
71
69
assert . equal ( animation . tweens . length , 1 , ".tweens has one Tween" ) ;
72
70
assert . equal ( typeof animation . tweens [ 0 ] . run , "function" , "which has a .run function" ) ;
@@ -85,7 +83,7 @@ QUnit.test( "Animation( subject, props, opts ) - shape", function( assert ) {
85
83
assert . equal ( jQuery . timers [ 0 ] . queue , opts . queue , "...with .queue" ) ;
86
84
87
85
// Cleanup after ourselves by ticking to the end
88
- this . clock . tick ( 100 ) ;
86
+ this . clock . tick ( fxInterval * 10 ) ;
89
87
} ) ;
90
88
91
89
QUnit . test ( "Animation.prefilter( fn ) - calls prefilter after defaultPrefilter" ,
0 commit comments