blob: 8bc999157e6a3ee4180b276404bb3e2d5bbd7ed3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
define( [
"qunit",
"jquery",
"lib/helper",
"ui/widgets/tooltip"
], function( QUnit, $, helper ) {
"use strict";
return $.extend( helper, {
beforeAfterEach: function() {
return {
afterEach: function() {
var index, timer,
timers = jQuery.timers;
jQuery.fx.stop();
for ( index = timers.length; index--; ) {
timer = timers[ index ];
timer.anim.stop();
timers.splice( index, 1 );
}
return helper.moduleAfterEach.apply( this, arguments );
}
};
}
} );
} );
|